This commit is contained in:
2025-02-21 20:46:50 +01:00
commit 2e7aa9a37a
31 changed files with 1454 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM python:3-alpine
WORKDIR /app
VOLUME ["/data"]
COPY requirements.txt requirements.txt
RUN apk add --no-cache --virtual .build-deps gcc musl-dev && \
pip3 install -r requirements.txt && \
apk del .build-deps
ENV APP_ENV=docker
COPY .env* .
COPY src .
COPY graphql ./graphql
CMD ["python3", "main.py"]