Guest User

Dockerfile

a guest
May 15th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. FROM ubuntu:18.04
  2.  
  3. ENV LANG C.UTF-8
  4.  
  5. VOLUME /workspace
  6.  
  7. SHELL ["/bin/bash", "-c"]
  8.  
  9. RUN apt-get update && apt-get install -y python3 python3-pip
  10.  
  11. COPY requirements.txt requirements.txt
  12.  
  13. RUN pip3 install -r requirements.txt
Add Comment
Please, Sign In to add comment