feat: initial commit

This commit is contained in:
2024-11-19 22:28:04 +01:00
parent e55f4176be
commit afa380db31
6 changed files with 73 additions and 0 deletions

12
Dockerfile Normal file
View File

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