You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to publish multi-arch images for my devcontainers and I'm running into this error:
[2024-12-29T22:06:55.629Z] url: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to packages.microsoft.com:443
#23 155.0 gpg: no valid OpenPGP data found.
#23 155.0 ERROR: Feature "Docker (Docker-in-Docker)" (ghcr.io/devcontainers/features/docker-in-docker) failed to install! Look at the documentation at https://github.com/devcontainers/features/tree/main/src/docker-in-docker for help troubleshooting this error.
#23 ERROR: process "/bin/sh -c cp -ar /tmp/build-features-src/docker-in-docker_0 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/docker-in-docker_0 && cd /tmp/dev-container-features/docker-in-docker_0 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/docker-in-docker_0" did not complete successfully: exit code: 2
Below is my workflow:
name: "Publish Dev Containers"on:
workflow_dispatch:
push:
branches:
- mainjobs:
deploy:
if: ${{ github.ref == 'refs/heads/main' }}runs-on: ubuntu-latestpermissions:
packages: writesteps:
- name: Checkout (GitHub)uses: actions/checkout@v3
- name: Set up QEMU for multi-architecture buildsuses: docker/setup-qemu-action@v3
- name: Set up Docker Buildxuses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registryuses: docker/login-action@v3with:
registry: ghcr.iousername: ${{ github.actor }}password: ${{ github.token }}
- name: Build and Pushuses: devcontainers/[email protected]env:
BUILDX_NO_DEFAULT_ATTESTATIONS: truewith:
imageName: ghcr.io/${{ github.repository }}/baseimageTag: 0.1.0,latestsubFolder: baseplatform: linux/arm64,linux/amd64push: always
The text was updated successfully, but these errors were encountered:
I'm trying to publish multi-arch images for my devcontainers and I'm running into this error:
Below is my workflow:
The text was updated successfully, but these errors were encountered: