Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-ci
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UNL ITS
docker-ci
Merge requests
!89
dotnet-build-server - update jre package to v17 and node to 24
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
dotnet-build-server - update jre package to v17 and node to 24
update-dotnet-jre
into
develop
Overview
0
Commits
3
Pipelines
4
Changes
3
Merged
Roger Feese
requested to merge
update-dotnet-jre
into
develop
10 months ago
Overview
0
Commits
3
Pipelines
4
Changes
3
Expand
Updates to dotnet-build-server
Update to jre v17 which is currently supported by sonarscan.
Update node to active LTS v22.
Remove dotnet build-server v3.1: trx2unit no longer supports dotnet 3.1, and I don't think we have any projects that still use 3.1.
Edited
10 months ago
by
Roger Feese
0
0
Merge request reports
Compare
develop
version 2
b69367d4
10 months ago
version 1
f1c07a91
10 months ago
develop (base)
and
latest version
latest version
c28a3809
3 commits,
10 months ago
version 2
b69367d4
2 commits,
10 months ago
version 1
f1c07a91
1 commit,
10 months ago
3 files
+
3
−
34
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
dotnet-build-server/3.1/Dockerfile deleted
100644 → 0
+
0
−
28
Options
FROM
mcr.microsoft.com/dotnet/sdk:3.1-buster
ARG
BUILD_DATE
ARG
VCS_REF
ARG
VERSION
LABEL
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="dotnet SDK 3.1" \
org.label-schema.description="Docker image to build .NET core 3.1 applications" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vendor="University of Nebraska - Lincoln" \
org.label-schema.version="0.1.2" \
org.label-schema.schema-version="1.0" \
maintainer="Roger Feese <rfeese@nebraska.edu>"
# Make sure that tools we need are installed
# Add external nodejs LTS apt source
RUN
curl
-fsSL
https://deb.nodesource.com/setup_14.x | bash -
# JRE, NodeJS for sonarqube scanner post-scan
RUN
apt-get update
&&
apt-get
install
-y
\
git
\
openjdk-11-jre
\
nodejs
\
&&
rm
-rf
/var/lib/apt/lists/
*
# sonarscanner (https://docs.sonarqube.org/latest/analysis/scan/sonarscanner-for-msbuild/)
RUN
dotnet tool
install
--global
dotnet-sonarscanner
RUN
dotnet tool
install
--global
trx2junit
ENV
PATH=/root/.dotnet/tools:$PATH
Loading