Skip to content

Commit 6758c43

Browse files
authored
Merge pull request #13 from ptr727/develop
Develop
2 parents 3ba4b8e + b11694b commit 6758c43

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/BuildPublishPipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: 'Build and Push .NET LTS and STS'
4444
uses: docker/build-push-action@v4
4545
with:
46-
platforms: linux/amd64,linux/arm64,linux/arm/v7
46+
platforms: linux/amd64,linux/arm64
4747
push: ${{ (github.event_name != 'pull_request') }}
4848
tags: |
4949
ptr727/vscode-server-dotnetcore:${{ endsWith(github.ref, 'refs/heads/main') && 'latest' || 'develop' }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# docker run -it --rm --pull always --name Testing ptr727/vscode-server-dotnetcore:develop /bin/bash
77

88
# Build Dockerfile
9-
# docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --tag testing:latest .
9+
# docker buildx build --platform linux/amd64,linux/arm64 --tag testing:latest .
1010

1111
# Test linux/amd64 target
1212
# docker buildx build --load --progress plain --no-cache --platform linux/amd64 --tag testing:latest .

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ 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-
Multi-Architecture images are created for `linux/amd64`, `linux/arm64`, and `linux/arm/v7`.
19+
Multi-Architecture images are created for `linux/amd64` and `linux/arm64` (`linux/arm/v7` is [no longer supported](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) by LSIO).
2020
Tags are `latest` for `main` branch and `develop` for `develop` branch.
2121
E.g. `docker pull ptr727/vscode-server-dotnetcore:latest`
2222
E.g. `docker pull ptr727/vscode-server-dotnetcore:develop`

0 commit comments

Comments
 (0)