Fix Dockerfile healthcheck, add curl

This commit is contained in:
Tobias Hopp 2025-04-16 10:53:55 +02:00
parent 56c0867a20
commit 9ce80b4c59

View File

@ -44,6 +44,12 @@ LABEL "org.opencontainers.image.version"="1.0.0"
LABEL "VERSION"="1.0.0"
LABEL maintainer="Tobias Hopp and Philip Rothstein"
# Install curl for healthcheck
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get -qq -y install curl && \
rm -rf /var/cache/apt/archives /var/lib/apt/lists/*
WORKDIR /app