diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c44ef9f..9a80d69 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -220,8 +220,7 @@ jobs: - name: Build and push Docker image uses: docker/build-push-action@v5 with: - context: . - file: ./docker/Dockerfile + context: ./docker push: true platforms: linux/amd64,linux/arm64 tags: | diff --git a/docker/Dockerfile b/docker/Dockerfile index e684957..45a1954 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -18,7 +18,7 @@ COPY ${TARGETARCH}/LICENSE /opt/bichon/ RUN chmod +x /opt/bichon/bichon # Copy and setup entrypoint script for PUID/PGID support -COPY docker/entrypoint.sh /usr/local/bin/entrypoint.sh +COPY entrypoint.sh /usr/local/bin/entrypoint.sh RUN chmod +x /usr/local/bin/entrypoint.sh # Install ca-certificates to ensure HTTPS certificate verification works correctly