Dockerfile 295 B

12345678910111213
  1. FROM ubuntu
  2. WORKDIR /
  3. RUN apt-get update -y && apt-get upgrade -y && apt-get install -y git python3 python3-pip
  4. RUN git clone https://github.com/foreverpositive/New-Phystech-Printers-Bot.git cloned
  5. RUN mv cloned/* .. && rm -rf cloned
  6. RUN pip install -r requirements.txt
  7. CMD python main.py