From 2964b9f09d4da420ec5da92b22b706629f11f0cf Mon Sep 17 00:00:00 2001 From: Zoey Date: Thu, 2 May 2024 14:58:18 +0200 Subject: [PATCH] Update Dockerfile Signed-off-by: Zoey --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a7868c7..32b283b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG PT_VERSION=v6.1.0 \ TARGETARCH RUN apk upgrade --no-cache -a && \ - apk add --no-cache ca-certificates bash git nodejs-current yarn npm && \ + apk add --no-cache ca-certificates bash git nodejs yarn npm && \ yarn global add clean-modules && \ git clone --recursive https://github.com/Chocobozzz/PeerTube --branch "$PT_VERSION" /app && \ sed -i "s|gosu|su-exec|g" /app/support/docker/production/entrypoint.sh && \ @@ -42,7 +42,7 @@ COPY --from=build /app /app WORKDIR /app # Install dependencies -RUN apk add --no-cache ca-certificates tzdata tini ffmpeg su-exec shadow nodejs-current && \ +RUN apk add --no-cache ca-certificates tzdata tini ffmpeg su-exec shadow nodejs && \ # Add peertube user groupadd -r peertube && \ useradd -r -g peertube -m peertube && \