This commit is contained in:
Sean Corrigan 2021-09-14 16:52:30 -04:00
parent 2a1599a746
commit a1f25f1dda

View File

@ -1,9 +1,9 @@
# set base image (host OS) # set base image (host OS)
FROM python:3.8 FROM python:3.8
# copy the dependencies file to the working directory # copy the dependencies file to the working directory
COPY require.txt . COPY requirements.txt .
# install dependencies # install dependencies
RUN pip install -r require.txt RUN pip install -r requirements.txt
# copy the content of the local src directory to the working directory # copy the content of the local src directory to the working directory
COPY main.py . COPY main.py .
# command to run on container start # command to run on container start