12 lines
229 B
Text
12 lines
229 B
Text
|
# syntax=docker/dockerfile:1
|
||
|
|
||
|
FROM python:3.9-slim-buster
|
||
|
|
||
|
WORKDIR /indestructables
|
||
|
|
||
|
COPY requirements.txt requirements.txt
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]
|