From ff2f7681141883a646d20d5638aa8bb769bdc65c Mon Sep 17 00:00:00 2001 From: strophy <32928115+strophy@users.noreply.github.com> Date: Fri, 29 Apr 2022 02:35:50 +1000 Subject: [PATCH] ci: fix docker context (#4816) --- .github/workflows/release_docker_hub.yml | 2 +- contrib/containers/deploy/Dockerfile.GitHubActions.Release | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_docker_hub.yml b/.github/workflows/release_docker_hub.yml index 8d64e578c0..0e6e90617c 100644 --- a/.github/workflows/release_docker_hub.yml +++ b/.github/workflows/release_docker_hub.yml @@ -43,7 +43,7 @@ jobs: id: docker_build uses: docker/build-push-action@v2 with: - context: ${{ github.workspace }} + context: ./contrib/containers/deploy file: ./contrib/containers/deploy/Dockerfile.GitHubActions.Release push: true tags: ${{ steps.docker_meta.outputs.tags }} diff --git a/contrib/containers/deploy/Dockerfile.GitHubActions.Release b/contrib/containers/deploy/Dockerfile.GitHubActions.Release index 7558d480a3..8262989a00 100644 --- a/contrib/containers/deploy/Dockerfile.GitHubActions.Release +++ b/contrib/containers/deploy/Dockerfile.GitHubActions.Release @@ -34,7 +34,7 @@ USER dash VOLUME ["/dash"] -COPY dash/contrib/containers/deploy/docker-entrypoint.sh /docker-entrypoint.sh +COPY docker-entrypoint.sh /docker-entrypoint.sh ENTRYPOINT ["/docker-entrypoint.sh"] EXPOSE 9998 9999 19998 19999