mirror of
https://github.com/tgbot-collection/ytdlbot.git
synced 2024-11-10 17:25:59 +08:00
19 lines
637 B
Docker
19 lines
637 B
Docker
FROM python:3.10-alpine as builder
|
|
|
|
RUN apk update && apk add --no-cache tzdata alpine-sdk libffi-dev ca-certificates
|
|
ADD requirements.txt /tmp/
|
|
RUN pip3 install --user -r /tmp/requirements.txt && rm /tmp/requirements.txt
|
|
|
|
|
|
FROM python:3.10-alpine
|
|
WORKDIR /ytdlbot/ytdlbot
|
|
ENV TZ=Europe/Stockholm
|
|
|
|
COPY apk.txt /tmp/
|
|
RUN apk update && xargs apk add < /tmp/apk.txt
|
|
COPY --from=builder /root/.local /usr/local
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
|
|
COPY . /ytdlbot
|
|
|
|
CMD ["/usr/local/bin/supervisord", "-c" ,"/ytdlbot/conf/supervisor_main.conf"]
|