Guest User

Untitled

a guest
Jun 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. FROM python:3
  2.  
  3. WORKDIR /usr/src/app
  4.  
  5. RUN pip install --upgrade pip
  6. COPY requirements.txt ./
  7. RUN pip install --no-cache-dir -r requirements.txt
  8. COPY minesweeper.py ./
  9.  
  10. CMD [ "python", "./minesweeper.py" ]
Add Comment
Please, Sign In to add comment