Files
NP_CSM_Tool/Dockerfile
2023-04-14 14:48:41 -04:00

8 lines
150 B
Docker

FROM python:3.11
COPY ./requirements.txt /
WORKDIR /
RUN pip install -r requirements.txt
COPY . /
EXPOSE 5005
CMD [ "flask", "run", "--host=0.0.0.0"]