Files
YYeTsBot/Dockerfile

10 lines
311 B
Docker
Raw Normal View History

2021-01-10 14:17:11 +08:00
FROM python:3.8-alpine
2020-06-20 15:52:25 +08:00
2021-01-27 21:29:54 +08:00
RUN apk update && apk add --no-cache tzdata ca-certificates
2020-12-24 13:42:47 +08:00
COPY requirements.txt /requirements.txt
2021-01-27 21:29:54 +08:00
RUN pip3 install --no-cache-dir -r /requirements.txt && rm /requirements.txt
COPY ./yyetsbot /YYeTsBot/yyetsbot
2020-06-20 15:52:25 +08:00
2020-11-05 16:45:38 +08:00
ENV TZ=Asia/Shanghai
2021-01-21 12:20:43 +08:00
WORKDIR /YYeTsBot/yyetsbot
2021-01-27 21:29:54 +08:00
CMD ["python", "bot.py"]