blob: 8489469118dcb025d27aadc4575e2f7ef280bbba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM python:3.7-alpine
WORKDIR /app
COPY . .
RUN apk add --update --no-cache --virtual .build-deps \
openssl-dev \
g++ \
libffi-dev && \
apk add --update --no-cache \
tzdata \
git && \
pip install --no-cache-dir -r requirements.txt && \
apk del .build-deps && \
rm -rf /var/cache/apk/*
CMD [ "python3", "bot.py" ]
|