From 6f5a7239664ddeb7c87b87e386647e76e16516a5 Mon Sep 17 00:00:00 2001 From: zacherykampmann Date: Thu, 4 Jan 2024 12:07:12 -0500 Subject: [PATCH] Update dotnet image to 7 --- dotnet/Dockerfile | 4 ++-- dotnet/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dotnet/Dockerfile b/dotnet/Dockerfile index f5033b9..8fb3c19 100644 --- a/dotnet/Dockerfile +++ b/dotnet/Dockerfile @@ -10,7 +10,7 @@ FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} LABEL name="Solutions Delivery Platform: DotNet SDK" \ maintainer="uip@bah.com" \ vendor="Booz Allen Hamilton" \ - version="6.0.106" \ + version="7.0.14" \ release="3.2.0" \ summary="DotNet SDK container" \ description="The DotNet SDK container image for the Solutions Delivery Platform" @@ -22,7 +22,7 @@ COPY LICENSE /licenses USER root ### Install packages -RUN INSTALL_PKGS="dotnet-sdk-6.0" && \ +RUN INSTALL_PKGS="dotnet-sdk-7.0" && \ yum clean all &&\ yum --disableplugin=subscription-manager -y update-minimal --setopt=tsflags=nodocs \ --security && \ diff --git a/dotnet/Makefile b/dotnet/Makefile index b2ac30c..0210de1 100644 --- a/dotnet/Makefile +++ b/dotnet/Makefile @@ -1,7 +1,7 @@ OWNER = boozallen REPO = sdp-images IMAGE = dotnet-sdk -VERSION = 6.0.106 +VERSION = 7.0.14 REGISTRY = docker.pkg.github.com/$(OWNER)/$(REPO) TAG = $(REGISTRY)/$(IMAGE):$(VERSION)