Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. FROM python:3.6-alpine3.6
  2. RUN apk update
  3. RUN apk upgrade
  4. RUN apk add --no-cache git openssh curl
  5. ENV WORK_ENV=DEV
  6.  
  7. COPY . /api
  8. WORKDIR /api
  9. ADD run.py .
  10. ADD requirements.txt .
  11. RUN pip install -r requirements.txt
  12.  
  13. EXPOSE 5000
  14. # ENTRYPOINT ["python3.6", "run.py"]
  15.  
  16. CMD ["python3.6", "run.py"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement