Skip to content

Commit

Permalink
docker: change image author email
Browse files Browse the repository at this point in the history
  • Loading branch information
Divkix committed May 26, 2023
1 parent eb491af commit 6e2bf39
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CMD ["/app/aliveimage"]

HEALTHCHECK --interval=5s --timeout=3s --retries=3 CMD curl --fail http://localhost:$API_LISTEN_PORT/status || exit 1

LABEL org.opencontainers.image.authors="Divanshu Chauhan <me@divkix.me>"
LABEL org.opencontainers.image.authors="Divanshu Chauhan <divkix@divkix.me>"
LABEL org.opencontainers.image.url="https://divkix.me"
LABEL org.opencontainers.image.source="https://github.com/divkix/aliveimage"
LABEL org.opencontainers.image.title="Alive Image"
Expand Down
9 changes: 9 additions & 0 deletions goreleaser.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
FROM alpine:3.18
COPY aliveimage /
CMD ["/aliveimage"]

HEALTHCHECK --interval=5s --timeout=3s --retries=3 CMD curl --fail http://localhost:$API_LISTEN_PORT/status || exit 1

LABEL org.opencontainers.image.authors="Divanshu Chauhan <divkix@divkix.me>"
LABEL org.opencontainers.image.url="https://divkix.me"
LABEL org.opencontainers.image.source="https://github.com/divkix/aliveimage"
LABEL org.opencontainers.image.title="Alive Image"
LABEL org.opencontainers.image.description="Basic go app & docker image with simple json response."
LABEL org.opencontainers.image.vendor="Divkix"

0 comments on commit 6e2bf39

Please sign in to comment.