This commit is contained in:
cooler
2023-06-19 10:12:07 +03:00
commit da99902e99
3 changed files with 178 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
# start by pulling the python image
FROM python:3.8-alpine
# copy the requirements file into the image
COPY ./requirements.txt /app/requirements.txt
# switch working directory
WORKDIR /app
# install the dependencies and packages in the requirements file
RUN pip install -r requirements.txt
# copy every content from the local file to the image
COPY . /app
# configure the container to run in an executed manner
ENTRYPOINT [ "python" ]
CMD ["main.py" ]