Skip to content

Commit

Permalink
github action version fix. Dockerfile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
NickOvt committed Sep 9, 2024
1 parent a01fe59 commit f6fbc32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit f6fbc32

Please sign in to comment.