Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
dbg entrypoint copy
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat authored Jan 22, 2024
1 parent e764029 commit eb6a040
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
20 changes: 10 additions & 10 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit eb6a040

Please sign in to comment.