diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yaml index 1c18f33..a03f8f5 100644 --- a/.github/workflows/container.yaml +++ b/.github/workflows/container.yaml @@ -106,14 +106,14 @@ jobs: - if: ${{ github.event_name == 'push' }} && ${{ github.ref == 'refs/heads/main' }} - name: Container Push + name: Container Build & Push uses: docker/build-push-action@v5 id: container-push with: push: true cache-from: type=inline context: ./docker - file: ./Dockerfile + file: ./docker/Dockerfile platforms: linux/amd64,linux/arm64 annotations: '"annotations": { "org.opencontainers.image.description": "Pulumi Devcontainer" }' tags: "ghcr.io/${{ steps.repository.outputs.lowercase }}:latest,ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }}" diff --git a/docker/Dockerfile b/docker/Dockerfile index 1bc16f8..92075e3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -688,13 +688,13 @@ RUN set -ex \ && rm -rf /tmp/* \ && true -################################################################################# -# Load startup artifacts -COPY ./docker/bin/connect /bin/ -COPY ./docker/bin/entrypoint /bin/ - -################################################################################# -# Entrypoint & default command -WORKDIR /workspaces -ENTRYPOINT /bin/entrypoint -CMD ["/usr/bin/env", "connect"] +################################################################################## +## Load startup artifacts +#COPY ./docker/bin/connect /bin/ +#COPY ./docker/bin/entrypoint /bin/ +# +################################################################################## +## Entrypoint & default command +#WORKDIR /workspaces +#ENTRYPOINT /bin/entrypoint +#CMD ["/usr/bin/env", "connect"] \ No newline at end of file