forked from lab/exemple_ci
21 lines
518 B
Docker
21 lines
518 B
Docker
# start by pulling the python image
|
|
FROM python:3.8-alpine
|
|
|
|
# copy the requirements file into the image
|
|
COPY ./src/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 ./src/view.py /app/view.py
|
|
COPY ./src/templates /app/templates
|
|
|
|
# configure the container to run in an executed manner
|
|
ENTRYPOINT [ "python" ]
|
|
|
|
CMD ["view.py" ]
|