Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/6.0.425'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Aug 14, 2024
2 parents 704c670 + 81a8e6e commit 2029c6d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
16 changes: 5 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
# Base image containing dependencies used in builder and final image
FROM ghcr.io/swissgrc/azure-pipelines-git:2.45.2 AS base
FROM ghcr.io/swissgrc/azure-pipelines-git:2.46.0 AS base

# Builder image
FROM base AS build

# Make sure to fail due to an error at any stage in shell pipes
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# renovate: datasource=repology depName=debian_12/curl versioning=loose
ENV CURL_VERSION=7.88.1-10+deb12u6

RUN apt-get update -y && \
# Install necessary dependencies
apt-get install -y --no-install-recommends curl=${CURL_VERSION} && \
# Add .NET PPA
curl -o /tmp/packages-microsoft-prod.deb https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb && \
dpkg -i /tmp/packages-microsoft-prod.deb && \
# Add .NET PPA
ADD https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb /tmp/packages-microsoft-prod.deb
RUN dpkg -i /tmp/packages-microsoft-prod.deb && \
rm -rf /tmp/*

# Final image
Expand All @@ -37,7 +31,7 @@ COPY --from=build /etc/apt/sources.list.d/ /etc/apt/sources.list.d
# Install .NET 6

# renovate: datasource=github-tags depName=dotnet/sdk extractVersion=^v(?<version>.*)$
ENV DOTNET_VERSION=6.0.424
ENV DOTNET_VERSION=6.0.425

ENV \
# Do not show first run text
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ The following example shows the container used for a deployment step which shows
| Tag | Description | Base Image | .NET SDK | Size |
|------------|-------------------------------------------------------------------------------------------------|----------------------------|----------|-----------------------------------------------------------------------------------------------------------------------------------|
| 6 | Latest stable release (from `main` branch) | azure-pipelines-git:2.45.2 | 6.0.424 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6?style=flat-square) |
| 6-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-git:2.45.2 | 6.0.424 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6-unstable?style=flat-square) |
| 6 | Latest stable release (from `main` branch) | azure-pipelines-git:2.46.0 | 6.0.425 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6?style=flat-square) |
| 6-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-git:2.46.0 | 6.0.425 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6-unstable?style=flat-square) |
| 6.0.301 | [.NET SDK 6.0.301](https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.6/6.0.6.md) | debian:11.3-slim | 6.0.301 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6.0.301?style=flat-square) |
| 6.0.302 | [.NET SDK 6.0.302](https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.7/6.0.7.md) | debian:11.3-slim | 6.0.302 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6.0.302?style=flat-square) |
| 6.0.302.1 | [.NET SDK 6.0.302](https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.7/6.0.7.md) | debian:11.3-slim | 6.0.302 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6.0.302.1?style=flat-square) |
Expand Down Expand Up @@ -64,5 +64,6 @@ The following example shows the container used for a deployment step which shows
| 6.0.422 | [.NET SDK 6.0.422](https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.30/6.0.30.md) | azure-pipelines-git:2.45.1 | 6.0.422 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6.0.422?style=flat-square) |
| 6.0.423 | [.NET SDK 6.0.423](https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.31/6.0.31.md) | azure-pipelines-git:2.45.1 | 6.0.423 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6.0.423?style=flat-square) |
| 6.0.424 | [.NET SDK 6.0.424](https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.32/6.0.32.md) | azure-pipelines-git:2.45.2 | 6.0.424 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6.0.424?style=flat-square) |
| 6.0.425 | [.NET SDK 6.0.425](https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.33/6.0.33.md) | azure-pipelines-git:2.46.0 | 6.0.425 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-dotnet/6.0.425?style=flat-square) |

[Azure Pipelines container jobs]: https://docs.microsoft.com/en-us/azure/devops/pipelines/process/container-phases

0 comments on commit 2029c6d

Please sign in to comment.