Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ LABEL maintainer="[email protected]"

EXPOSE 22 3000

HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
CMD curl -f http://localhost:3000/api/healthz || exit 1

RUN apk --no-cache add \
bash \
ca-certificates \
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.rootless
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ LABEL maintainer="[email protected]"

EXPOSE 2222 3000

HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
CMD curl -f http://localhost:3000/api/healthz || exit 1

RUN apk --no-cache add \
bash \
ca-certificates \
Expand Down