Made runnable on own infra

This commit is contained in:
spijkercenter
2023-07-02 12:00:26 +02:00
parent 89dc57ac40
commit 675dacb3c2
3 changed files with 25 additions and 8 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# syntax=docker/dockerfile=1
FROM python:3.10-alpine
WORKDIR /app
COPY src/requirements.txt .
RUN pip3 install -r requirements.txt
COPY src .
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]