Skip to content

Commit

Permalink
[#1586] Install missing curl in docker
Browse files Browse the repository at this point in the history
Which is required in the healthcheck command.
  • Loading branch information
andrei-pavel committed Dec 5, 2024
1 parent 9460ca2 commit 51f710a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/images/stork.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,13 @@ ENV API_HOST localhost
ENV API_PORT 8080
EXPOSE 81
EXPOSE 82
RUN apt-get update \
&& apt-get install \
--no-install-recommends \
-y \
curl=7.88.* \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN sed -i 's/<base href="\/">/<base href="\/stork\/">/g' /usr/share/stork/www/index.html
HEALTHCHECK CMD ["curl", "--fail", "http://localhost:81"]

Expand Down

0 comments on commit 51f710a

Please sign in to comment.