From 005c371c6d5b2b900df950b63b29967b08ee2463 Mon Sep 17 00:00:00 2001 From: Th0masL Date: Wed, 15 Jun 2022 03:47:32 +0300 Subject: [PATCH] Update to alpine:3.16 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 72a6520..759c236 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # This is a template to be used by GoReleaser. # See docs for details: https://goreleaser.com/customization/docker/ -FROM alpine:3.10 +FROM alpine:3.16 WORKDIR /app RUN wget -O /usr/bin/yt-dlp https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp && \ @@ -10,6 +10,5 @@ RUN wget -O /usr/bin/yt-dlp https://github.com/yt-dlp/yt-dlp/releases/latest/dow apk --no-cache add ca-certificates python3 py3-pip ffmpeg tzdata COPY podsync /app/podsync - ENTRYPOINT ["/app/podsync"] CMD ["--no-banner"]