Fix dashboard error: Unable to get installed package (#592)

This PR includes fix for dashboard

dd02680d79

Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
This commit is contained in:
Andrei Kvapil
2025-01-18 15:18:28 +01:00
committed by GitHub
parent e23286a336
commit fb723bc650
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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