add Dockerfile

This commit is contained in:
2024-10-26 20:54:47 +02:00
parent 909671e32d
commit 4be515d18e

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.10-alpine
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN apk add pango libffi fontconfig ttf-freefont
RUN pip install -r requirements.txt
COPY . /app
ENTRYPOINT [ "python" ]
CMD [ "app.py" ]