Advertisement
Guest User

Untitled

a guest
Jul 18th, 2020
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. FROM python:latest
  2.  
  3. RUN apt-get update
  4. RUN apt-get install python3 -y
  5. RUN apt-get install python3-pip -y
  6. LABEL maintainer="[email protected]"
  7. COPY . /vk-bot
  8. WORKDIR /vk-bot
  9. RUN pip3 install flask
  10. RUN pip3 install requests
  11. RUN pip3 install pika
  12. CMD [ "python3", "-u", "main.py" ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement