readding dockerfile

This commit is contained in:
Josh Burman 2021-10-28 15:55:29 +00:00
parent 9680122a49
commit 3a42d83b76

21
Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM python:3.9.6
RUN mkdir /app
WORKDIR /app
RUN python -m pip install pulp
RUN svn checkout https://projects.coin-or.org/svn/Cbc/releases/2.9.8 Cbc-2.9.8
RUN cd Cbc-2.9.8 && \
./configure && \
make && \
make install
RUN python -m pip install pydantic
RUN python -m pip install pySqsListener
# Bundle app source
COPY . /app
WORKDIR /app/app
# CMD [ "python", "main.py" ]
CMD tail -f /dev/null