Advertisement
beqa1923

Untitled

Sep 3rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. FROM fedora:latest
  2. MAINTAINER bchikovani@qarva.com
  3.  
  4. RUN dnf groupinstall "Development Tools" -y
  5. RUN dnf install python -y
  6. RUN dnf install python3 -y
  7. RUN dnf install python3-pip -y
  8. RUN dnf install python3-devel -y
  9. RUN pip3 install uwsgi
  10. RUN easy_install-3.7 webapp2
  11.  
  12. COPY ksmPy /app
  13. RUN chmod +x /app/run.sh
  14.  
  15. WORKDIR /app
  16.  
  17. CMD ["/app/run.sh"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement