Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FROM python:2.7.14-alpine3.7
- LABEL maintainer="[email protected]"
- RUN apk update
- ENV APP_HOME = /webapp
- WORKDIR /webapp
- COPY requirements.txt /webapp/
- RUN pip install -r /webapp/requirements.txt
- COPY . /webapp/
- EXPOSE 8888
- RUN chmod +x /webapp/docker/run.sh
- ENTRYPOINT ["/webapp/docker/run.sh"]
Advertisement
Add Comment
Please, Sign In to add comment