From f6fbc32ac1a82e4daf6d508275ae2573ef42cda3 Mon Sep 17 00:00:00 2001 From: Nikolai Ovtsinnikov Date: Mon, 9 Sep 2024 10:57:02 +0300 Subject: [PATCH] github action version fix. Dockerfile fixes --- .github/workflows/docker-release.yaml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-release.yaml b/.github/workflows/docker-release.yaml index 336857f..a3c3024 100644 --- a/.github/workflows/docker-release.yaml +++ b/.github/workflows/docker-release.yaml @@ -37,7 +37,7 @@ jobs: - name: Build and push Docker image id: push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true diff --git a/Dockerfile b/Dockerfile index 0f2a207..6797e47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,5 +21,5 @@ RUN apk add --no-cache tini WORKDIR /app COPY --from=builder /app /app -ENTRYPOINT ["/sbin/tini", "--", "node", "index.js"] -CMD ["--config=config/zonemta.toml"] +ENTRYPOINT ["/sbin/tini", "--"] +CMD ["node", "index.js", "--config=config/zonemta.toml"]