Skip to content

Commit dacde95

Browse files
RI-6930 fix root dockerfile (#4431)
* RI-6930 fix root dockerfile * RI-6930 fix icons issue
1 parent 065d43e commit dacde95

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@ FROM node:20.14-alpine as build
1212
RUN apk update && apk add --no-cache --virtual .gyp \
1313
python3 \
1414
make \
15+
git \
1516
g++
1617

1718
# set workdir
1819
WORKDIR /usr/src/app
1920

2021
# restore node_modules for front-end
2122
COPY package.json yarn.lock tsconfig.json ./
23+
COPY patches ./patches
24+
COPY redisinsight/ui/vite.config.mjs ./redisinsight/ui/
25+
COPY redisinsight/ui/src/config ./redisinsight/ui/src/config
2226
RUN SKIP_POSTINSTALL=1 yarn install
2327

2428
# prepare backend by copying scripts/configs and installing node modules

0 commit comments

Comments
 (0)