11 lines
182 B
Docker
11 lines
182 B
Docker
FROM python:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]
|