From fb723bc650a3df928cf5e8b1107e2319c9caf335 Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Sat, 18 Jan 2025 15:18:28 +0100 Subject: [PATCH] Fix dashboard error: Unable to get installed package (#592) This PR includes fix for dashboard https://github.com/aenix-io/kubeapps/commit/dd02680d796c962b8dcc4e5ea70960a846c1acdc Signed-off-by: Andrei Kvapil --- packages/system/dashboard/images/dashboard/Dockerfile | 2 +- packages/system/dashboard/images/kubeapps-apis/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/system/dashboard/images/dashboard/Dockerfile b/packages/system/dashboard/images/dashboard/Dockerfile index 1c2e3617..59073e2e 100644 --- a/packages/system/dashboard/images/dashboard/Dockerfile +++ b/packages/system/dashboard/images/dashboard/Dockerfile @@ -1,7 +1,7 @@ FROM bitnami/node:20.15.1 AS build WORKDIR /app -ARG COMMIT_REF=215c323b0754c8f7328819df9a253e0e507eccb4 +ARG COMMIT_REF=dd02680d796c962b8dcc4e5ea70960a846c1acdc RUN wget -O- https://github.com/aenix-io/kubeapps/archive/${COMMIT_REF}.tar.gz | tar xzf - --strip-components=2 kubeapps-${COMMIT_REF}/dashboard RUN yarn install --frozen-lockfile diff --git a/packages/system/dashboard/images/kubeapps-apis/Dockerfile b/packages/system/dashboard/images/kubeapps-apis/Dockerfile index 54bc172f..8d9f5041 100644 --- a/packages/system/dashboard/images/kubeapps-apis/Dockerfile +++ b/packages/system/dashboard/images/kubeapps-apis/Dockerfile @@ -4,7 +4,7 @@ # syntax = docker/dockerfile:1 FROM alpine as source -ARG COMMIT_REF=215c323b0754c8f7328819df9a253e0e507eccb4 +ARG COMMIT_REF=dd02680d796c962b8dcc4e5ea70960a846c1acdc RUN apk add --no-cache patch WORKDIR /source RUN wget -O- https://github.com/aenix-io/kubeapps/archive/${COMMIT_REF}.tar.gz | tar xzf - --strip-components=1