remove .docker-compose dockerfile

This commit is contained in:
brmnjsh 2023-11-29 23:19:51 +00:00
parent f2324c2613
commit 0675a634fb

View File

@ -1,22 +0,0 @@
FROM python:3.9.6
ARG NEXUS_TOKEN
ENV PIP_CONFIG_FILE pip.conf
ENV PYTHONPATH /pip
ENV NEXUS_TOKEN $NEXUS_TOKEN
RUN apt-get update
RUN apt-get -y install coinor-cbc
RUN mkdir /app
WORKDIR /app
# Bundle app source
COPY . /app
RUN python -m pip install -r requirements.txt
WORKDIR /app/app
CMD [ "python", "main.py" ]