Skip to content
Snippets Groups Projects

Update Dockerfile

parent 2df78988
No related branches found
No related tags found
No related merge requests found
# This file is a template, and might need editing before it works on your project. print("hello world")
FROM python:2.7
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY requirements.txt /usr/src/app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /usr/src/app
CMD ["python", "app.py"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment