"signatures" did not exist on "53dfe82885dc853589db1a16160e1333954ae2a2"
Newer
Older
# start by pulling the python image
# 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
EXPOSE 9090
# configure the container to run in an executed manner
ENTRYPOINT [ "python" ]
CMD ["mock_server.py" ]