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/ci@v0.3env:
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:
My apologies, I meant to update this issue. I believe I was seeing this when using the devcontainers/ci action to publish one of my pre-built images. When I swapped from ubuntu noble to jammy the build went through so it seems maybe the issues is noble. I'll change it back to noble and see if I can recreate the issue.
Edit: I was able to recreate the issue using mcr.microsoft.com/devcontainers/base:noble vs mcr.microsoft.com/devcontainers/base:jammy. Seems it's not necessarily an issue with the action... I can close or potentially test the buildpacks-curl image which the mircrosoft images seem to be based on.
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: