From 1d75df37cf33828ad8abeb3133ef9961498776e0 Mon Sep 17 00:00:00 2001 From: Nonoo Date: Sun, 1 Oct 2023 11:33:06 +0200 Subject: [PATCH] Do not include yt-dlp in Dockerfile, as it will be auto downloaded --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 39a4fd5..8947539 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,6 @@ COPY . . RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v FROM python:alpine -RUN wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp && \ - chmod 755 /usr/local/bin/yt-dlp RUN apk update && apk upgrade && apk add --no-cache ffmpeg COPY --from=builder /app/yt-dlp-telegram-bot /app/yt-dlp-telegram-bot COPY --from=builder /app/yt-dlp.conf /root/yt-dlp.conf