aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-03-09 19:41:25 +0100
committerGitHub <noreply@github.com>2021-03-09 19:41:25 +0100
commit88a8fa71005dbcfaa928168617830d68e39124ad (patch)
treeab0f5c39b5151d1a54b4a9a2b8822abfe1135968
parent329edd9dbe867902e735282b9a4e09a2fb4b9bd7 (diff)
parent235b36a4c7f5e2dbb682bb7e6588b8f06219ce6c (diff)
Merge pull request #5447 from joshuaboniface/fix-fedora-build
Remove Microsoft repo from install step
-rw-r--r--deployment/Dockerfile.fedora.amd644
1 files changed, 1 insertions, 3 deletions
diff --git a/deployment/Dockerfile.fedora.amd64 b/deployment/Dockerfile.fedora.amd64
index 2549f25ee..137e56ecf 100644
--- a/deployment/Dockerfile.fedora.amd64
+++ b/deployment/Dockerfile.fedora.amd64
@@ -13,9 +13,7 @@ RUN dnf update -y \
&& dnf install -y @buildsys-build rpmdevtools git dnf-plugins-core libcurl-devel fontconfig-devel freetype-devel openssl-devel glibc-devel libicu-devel systemd
# Install DotNET SDK
-RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc \
- && curl -o /etc/yum.repos.d/microsoft-prod.repo https://packages.microsoft.com/config/fedora/$(rpm -E %fedora)/prod.repo \
- && dnf install -y dotnet-sdk-${SDK_VERSION} dotnet-runtime-${SDK_VERSION}
+RUN dnf install -y dotnet-sdk-${SDK_VERSION} dotnet-runtime-${SDK_VERSION}
# Create symlinks and directories
RUN ln -sf ${SOURCE_DIR}/deployment/build.fedora.amd64 /build.sh \