oopsie
This commit is contained in:
parent
2a1599a746
commit
a1f25f1dda
@ -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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user