Skip to content

Commit

Permalink
chore: install wget for healthchecks
Browse files Browse the repository at this point in the history
  • Loading branch information
logotip4ik committed Oct 31, 2024
1 parent 374cd6c commit c68bb32
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/zeenk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ COPY . .

RUN CGO_ENABLED=0 go build -o /go/bin/zeenk-server

FROM debian:bookworm
FROM debian:bookworm-slim

# need wget for healthchecks
RUN apt-get update; apt-get install -y --no-install-recommends wget; rm -rf /var/lib/apt/lists/*

RUN groupadd --gid 1000 nonroot \
&& useradd --uid 1000 --gid nonroot --shell /bin/bash --create-home nonroot
Expand Down

0 comments on commit c68bb32

Please sign in to comment.