Delete Dockerfile

This commit is contained in:
2025-05-01 21:10:02 +02:00
parent bb0f7ac0b1
commit 071c71ae99

View File

@@ -1,12 +0,0 @@
FROM python:3-alpine
COPY . /app
WORKDIR /app
VOLUME /app/data
RUN pip install -r requirements.txt
ENTRYPOINT [ "/app/entrypoint.sh" ]
CMD [ "start" ]