Reporting: tzdata is needed for reporting (#24422)

This commit is contained in:
Leonard Gram 2020-05-08 14:17:12 +02:00 committed by GitHub
parent c6bba9019d
commit de8c1b9ad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ WORKDIR $GF_PATHS_HOME
# Install dependencies
# We need curl in the image
RUN apt-get update && apt-get upgrade -y && apt-get install -y ca-certificates curl && \
RUN apt-get update && apt-get upgrade -y && apt-get install -y ca-certificates curl tzdata && \
apt-get autoremove -y && rm -rf /var/lib/apt/lists/*;
COPY --from=grafana-builder /tmp/grafana "$GF_PATHS_HOME"