Skip to content

Commit dad1204

Browse files
committed
Add .NET 6.0
1 parent 8601b9b commit dad1204

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

.github/workflows/BuildPublishPipeline.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,27 @@ jobs:
7272
LABEL_VERSION=5.0
7373
INSTALL_VERSION=dotnet-sdk-5.0
7474
75-
# .NET Core 3.1 and .NET 5.0
76-
- name: 'Build and Push .NET Core 3.1 and .NET 5.0'
75+
# .NET 6.0
76+
- name: 'Build and Push .NET 6.0'
77+
uses: docker/build-push-action@v2
78+
with:
79+
platforms: linux/amd64
80+
push: ${{ env.DOCKER_PUSH }}
81+
tags: |
82+
ptr727/vscode-server-dotnetcore:6.0
83+
build-args: |
84+
LABEL_VERSION=6.0
85+
INSTALL_VERSION=dotnet-sdk-6.0
86+
87+
# .NET Core 3.1, .NET 5.0, and .NET 6.0
88+
- name: 'Build and Push .NET Core 3.1, .NET 5.0, and .NET 6.0'
7789
uses: docker/build-push-action@v2
7890
with:
7991
platforms: linux/amd64
8092
push: ${{ env.DOCKER_PUSH }}
8193
tags: |
8294
ptr727/vscode-server-dotnetcore:latest
83-
ptr727/vscode-server-dotnetcore:3.1.5.0
95+
ptr727/vscode-server-dotnetcore:31.50.60
8496
build-args: |
85-
LABEL_VERSION=3.1.5.0
86-
"INSTALL_VERSION=dotnet-sdk-3.1 dotnet-sdk-5.0"
97+
LABEL_VERSION=31.50.60
98+
"INSTALL_VERSION=dotnet-sdk-3.1 dotnet-sdk-5.0 dotnet-sdk-6.0"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM linuxserver/code-server:latest
22

3-
ARG LABEL_VERSION="3.1.5.0"
4-
ARG INSTALL_VERSION="dotnet-sdk-3.1 dotnet-sdk-5.0"
3+
ARG LABEL_VERSION="31.50.60"
4+
ARG INSTALL_VERSION="dotnet-sdk-3.1 dotnet-sdk-5.0 dotnet-sdk-6.0"
55

66
LABEL name="VSCode-Server-DotNet" \
77
version=${LABEL_VERSION} \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Docker image is based on [LinuxServer.io Code-Server](https://github.com/linuxse
1616
## Container Images
1717

1818
Docker container images are published on [Docker Hub](https://hub.docker.com/r/ptr727/vscode-server-dotnetcore).
19-
Images are tagged using `latest`, `3.1` and `5.0`.
20-
`latest` includes .NET Core 3.1 and .NET 5.0.
19+
Images are tagged using `latest`, `3.1`, `5.0`, and `6.0`.
20+
`latest` includes .NET Core 3.1 and .NET 5.0 and .NET 6.0.
2121
Images are automatically rebuilt every Monday morning, picking up the latest updates.
2222
![Docker Pulls](https://img.shields.io/docker/pulls/ptr727/vscode-server-dotnetcore?logo=docker)
2323
![Docker Image Version](https://img.shields.io/docker/v/ptr727/vscode-server-dotnetcore/latest?logo=docker)

0 commit comments

Comments
 (0)