add base docker image

This commit is contained in:
JesseBot 2022-10-05 09:44:28 +02:00
parent 2260c1ae46
commit d1fb9996ae

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3.10.7-slim-buster
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]