8 lines
179 B
Docker
8 lines
179 B
Docker
FROM python:3.8-slim-buster
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY mortgage/ .
|
|
|
|
CMD [ "python3", "-m" , "web", "run", "--host=0.0.0.0"] |