Browse Source

fix arm images by using ls55 (#876)

pull/877/head
Jason Dove 3 years ago committed by GitHub
parent
commit
ae64ca4a93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      docker/arm32v7/Dockerfile
  2. 3
      docker/arm64/Dockerfile

3
docker/arm32v7/Dockerfile

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal-arm32v7 AS dotnet-runtime
FROM linuxserver/ffmpeg:arm32v7-version-4.4-cli AS runtime-base
# TODO: upgrade once https://github.com/linuxserver/docker-ffmpeg/issues/19 is fixed
FROM linuxserver/ffmpeg:arm32v7-4.4-cli-ls55 AS runtime-base
COPY --from=dotnet-runtime /usr/share/dotnet /usr/share/dotnet
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y libicu-dev \
tzdata \

3
docker/arm64/Dockerfile

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal-arm64v8 AS dotnet-runtime
FROM linuxserver/ffmpeg:arm64v8-version-4.4-cli AS runtime-base
# TODO: upgrade once https://github.com/linuxserver/docker-ffmpeg/issues/19 is fixed
FROM linuxserver/ffmpeg:arm64v8-4.4-cli-ls55 AS runtime-base
COPY --from=dotnet-runtime /usr/share/dotnet /usr/share/dotnet
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y libicu-dev \
tzdata \

Loading…
Cancel
Save