Initial commit

This commit is contained in:
2023-04-30 17:22:13 +01:00
commit 9f10d2ed7d
9 changed files with 229 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# syntax=docker/dockerfile:1.4
FROM --platform=$BUILDPLATFORM python:3.10-alpine
WORKDIR /app
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY app.py /app
ENTRYPOINT ["python3"]
CMD ["app.py"]