use alpine 3.17
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/tag/woodpecker Pipeline was successful Details

main 10.8.7
Sebastian Hugentobler 2022-11-23 16:04:47 +01:00
parent 4c1e001970
commit 045b72d0f8
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM docker.io/alpine:3.16 AS builder-server
FROM docker.io/alpine:3.17 AS builder-server
ENV JELLYFIN_VERSION=v10.8.7
@ -17,7 +17,7 @@ RUN dotnet publish Jellyfin.Server \
"-p:DebugSymbols=false;DebugType=none;UseAppHost=true;PublishReadyToRun=true"
FROM docker.io/alpine:3.16 AS builder-web
FROM docker.io/alpine:3.17 AS builder-web
ENV JELLYFIN_VERSION=67ace3820f9d269cd4e3f52243831ee000448545
@ -33,7 +33,7 @@ RUN git checkout $JELLYFIN_VERSION
RUN npm install
RUN npm run build:development
FROM docker.io/thallian/alpine-s6:3.16
FROM docker.io/thallian/alpine-s6:3.17
RUN addgroup -g 2222 jellyfin
RUN adduser -h /home/jellyfin -u 2222 -D -G jellyfin jellyfin
@ -46,7 +46,7 @@ ENV JELLYFIN_LOG_DIR=/home/jellyfin/data
RUN apk add --no-cache \
dotnet6-runtime \
ffmpeg
ffmpeg
COPY --from=builder-server --chown=jellyfin:jellyfin /jellyfin/dist/jellyfin-server/ /home/jellyfin/server/
COPY --from=builder-web --chown=jellyfin:jellyfin /jellyfin-web/dist/ /home/jellyfin/server/jellyfin-web/