This commit is contained in:
2025-09-22 13:19:41 +02:00
parent 53668e986b
commit a5607c450b
16 changed files with 245 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
FROM python:3.12-slim-bookworm
WORKDIR /build
COPY scripts/* /build/
RUN pip install --upgrade pip && \
chmod +x entrypoint.sh && bash ./install.sh && \
apt-get -y autoremove && \
apt-get clean && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/* \
/var/log/* \
/usr/share/man
VOLUME /build/media
VOLUME /build/app_files
ENTRYPOINT ["python", "/build/widefrog.py"]
##ENTRYPOINT [ "tail -f /dev/null" ]
##CMD [ "tail -f /dev/null" ]
## && tail -f /dev/null"]