Telegram version of schneiderbot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
229 B

2 years ago
  1. FROM python:alpine
  2. RUN apk update
  3. RUN apk add --upgrade apk-tools
  4. RUN apk upgrade --available
  5. COPY ./src /code
  6. WORKDIR /code
  7. RUN pip install --upgrade pip
  8. RUN pip install -r misc/requirements.txt
  9. CMD [ "python", "./main.py" ]