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 7a8c93f commit 2259df2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ jobs:
# tags: "ghcr.io/${{ steps.repository.outputs.lowercase }}:latest,ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }}"
-
name: Push Container Image
id: docker_push
if: ${{ github.event_name == 'push' }} && ${{ github.ref == 'refs/heads/main' }}
id: docker_build_push
#if: ${{ github.event_name == 'push' }} && ${{ github.ref == 'refs/heads/main' }}
uses: docker/build-push-action@v5
with:
push: true
load: false
cache-to: type=registry,ref=ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }}
cache-from: type=registry,ref=ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }}
#oad: false
#ache-to: type=registry,ref=ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }}
#ache-from: type=registry,ref=ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }}
context: docker
file: docker/Dockerfile
platforms: linux/amd64,linux/arm64
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -691,10 +691,10 @@ RUN set -ex \
#################################################################################
# Load startup artifacts
COPY ./bin/connect /bin/
#COPY ./bin/entrypoint /bin/
COPY ./bin/entrypoint /bin/

#################################################################################
# Entrypoint & default command
WORKDIR /workspaces
#ENTRYPOINT /bin/entrypoint
ENTRYPOINT /bin/entrypoint
CMD ["/usr/bin/env", "connect"]

0 comments on commit 2259df2

Please sign in to comment.