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"]