12 lines
No EOL
229 B
Docker
12 lines
No EOL
229 B
Docker
# 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"] |