diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-11-16 18:37:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-16 18:37:16 -0500 |
| commit | d7b42e47d1cc38560bdfb56024a300ced39b9591 (patch) | |
| tree | fb217d8028145113ae844ea21312e1b5bdab330c | |
| parent | e86db484ef34e1f4910d2088414913e1d266f68d (diff) | |
| parent | e2e10e672fb3a8f343f62b6b6ef8d5a2f1628fee (diff) | |
Merge pull request #4493 from crobibero/hey-buster
Fix dockerfiles
| -rw-r--r-- | deployment/Dockerfile.docker.amd64 | 2 | ||||
| -rw-r--r-- | deployment/Dockerfile.docker.arm64 | 2 | ||||
| -rw-r--r-- | deployment/Dockerfile.docker.armhf | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/deployment/Dockerfile.docker.amd64 b/deployment/Dockerfile.docker.amd64 index b61185f8c..e1787acad 100644 --- a/deployment/Dockerfile.docker.amd64 +++ b/deployment/Dockerfile.docker.amd64 @@ -1,6 +1,6 @@ ARG DOTNET_VERSION=5.0 -FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster +FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster-slim ARG SOURCE_DIR=/src ARG ARTIFACT_DIR=/jellyfin diff --git a/deployment/Dockerfile.docker.arm64 b/deployment/Dockerfile.docker.arm64 index 7420b2137..08240111a 100644 --- a/deployment/Dockerfile.docker.arm64 +++ b/deployment/Dockerfile.docker.arm64 @@ -1,6 +1,6 @@ ARG DOTNET_VERSION=5.0 -FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster +FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster-slim ARG SOURCE_DIR=/src ARG ARTIFACT_DIR=/jellyfin diff --git a/deployment/Dockerfile.docker.armhf b/deployment/Dockerfile.docker.armhf index 38e72ad85..68c7b7d65 100644 --- a/deployment/Dockerfile.docker.armhf +++ b/deployment/Dockerfile.docker.armhf @@ -1,6 +1,6 @@ ARG DOTNET_VERSION=5.0 -FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster +FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster-slim ARG SOURCE_DIR=/src ARG ARTIFACT_DIR=/jellyfin |
