Guest User

Untitled

a guest
Dec 17th, 2018
85
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.7-stretch
  2. MAINTAINER Maxim Tishchenko "qwertmax@gmail.com"
  3. COPY ./api /usr/local/app
  4. WORKDIR /usr/local/app
  5. RUN pip install -r requirements.txt
  6. EXPOSE 3000
  7. ENTRYPOINT ["python", "app.py"]
Add Comment
Please, Sign In to add comment