Add Curl in Alpine to Support Docker Health Check (#65547)

adding curl into alpine build for this issue: https://github.com/grafana/grafana/issues/60805
This commit is contained in:
Ricky Whitaker 2023-03-31 15:36:57 -05:00 committed by GitHub
parent 99a106ac68
commit 412fc4dcfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,7 +100,7 @@ WORKDIR $GF_PATHS_HOME
# Install dependencies
RUN if grep -i -q alpine /etc/issue; then \
apk add --no-cache ca-certificates bash tzdata musl-utils && \
apk add --no-cache ca-certificates bash curl tzdata musl-utils && \
apk info -vv | sort; \
elif grep -i -q ubuntu /etc/issue; then \
DEBIAN_FRONTEND=noninteractive && \