Skip to content

Commit 05f848d

Browse files
committed
fix: Dockerfile - update to archive debian packages for old node 14 docker image
Signed-off-by: Lachezar Lechev <[email protected]>
1 parent fc5ae6f commit 05f848d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ ARG JELLYFIN_VERSION=4.4.1-4
3434

3535

3636
# RUN apt update and install wget
37-
RUN apt -y update && apt -y install wget
38-
RUN wget https://repo.jellyfin.org/archive/ffmpeg/debian/4.4.1-4/jellyfin-ffmpeg_4.4.1-4-buster_$(dpkg --print-architecture).deb -O jellyfin-ffmpeg_4.4.1-4-buster.deb
39-
RUN apt -y install ./jellyfin-ffmpeg_4.4.1-4-buster.deb
40-
RUN rm jellyfin-ffmpeg_4.4.1-4-buster.deb
37+
RUN sed -ie 's/deb\.debian/archive.debian/g' /etc/apt/sources.list \
38+
&& apt -y update && apt -y install wget
39+
RUN wget https://repo.jellyfin.org/archive/ffmpeg/debian/4.4.1-4/jellyfin-ffmpeg_4.4.1-4-buster_$(dpkg --print-architecture).deb -O jellyfin-ffmpeg_4.4.1-4-buster.deb \
40+
&& apt -y install ./jellyfin-ffmpeg_4.4.1-4-buster.deb\
41+
&& rm jellyfin-ffmpeg_4.4.1-4-buster.deb
4142

4243
# RUN apt install -y bash
4344
COPY download_server.sh download_server.sh

0 commit comments

Comments
 (0)