From 2259df2ffef1eacd1c945932eb84a5be28d3dd7b Mon Sep 17 00:00:00 2001 From: Kat Morgan Date: Mon, 22 Jan 2024 20:11:43 +0000 Subject: [PATCH] dbg entrypoint copy --- .github/workflows/container.yaml | 10 +++++----- docker/Dockerfile | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yaml index d4fd48f..5159e29 100644 --- a/.github/workflows/container.yaml +++ b/.github/workflows/container.yaml @@ -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 diff --git a/docker/Dockerfile b/docker/Dockerfile index 9900e81..a5d4b39 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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"]