Skip to content

Commit 36c08fa

Browse files
authored
Upgrade grafana to 11.6.1 (#114)
1 parent 7eeb0e8 commit 36c08fa

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

Dockerfile.kubernetes

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
FROM grafana/grafana:9.5.6-ubuntu
20+
FROM grafana/grafana:11.6.1
2121

2222
ARG BUILD_DATE
2323
ARG VCS_REF
@@ -34,10 +34,12 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
3434

3535
USER root
3636

37-
RUN apt-get update \
38-
&& apt-get upgrade -y \
39-
&& apt-get install -y python3-pip procps
40-
RUN pip3 install j2cli
37+
RUN apk add --no-cache \
38+
bash \
39+
py3-pip \
40+
procps
41+
42+
RUN pip3 install --break-system-packages --no-cache-dir j2cli
4143

4244
USER grafana
4345

Dockerfile.privatecloud

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
FROM grafana/grafana:9.5.6-ubuntu
20+
FROM grafana/grafana:11.6.1
2121

2222
ARG BUILD_DATE
2323
ARG VCS_REF
@@ -34,10 +34,12 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
3434

3535
USER root
3636

37-
RUN apt-get update \
38-
&& apt-get upgrade -y \
39-
&& apt-get install -y python3-pip procps
40-
RUN pip3 install j2cli
37+
RUN apk add --no-cache \
38+
bash \
39+
py3-pip \
40+
procps
41+
42+
RUN pip3 install --break-system-packages --no-cache-dir j2cli
4143

4244
USER grafana
4345

0 commit comments

Comments
 (0)