irt-service/Dockerfile
Joshua Burman 4c4a447afe add pytest
2022-04-14 17:12:48 -04:00

20 lines
351 B
Docker

FROM python:3.9.6
RUN apt-get update
RUN apt-get -y install coinor-cbc
RUN python -m pip install pulp
RUN python -m pip install pydantic
RUN python -m pip install daemonize
RUN python -m pip install sqspy
RUN python -m pip install -U pytest
RUN mkdir /app
WORKDIR /app
# Bundle app source
COPY . /app
WORKDIR /app/app
CMD [ "python", "main.py" ]