We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 065d43e commit dacde95Copy full SHA for dacde95
Dockerfile
@@ -12,13 +12,17 @@ FROM node:20.14-alpine as build
12
RUN apk update && apk add --no-cache --virtual .gyp \
13
python3 \
14
make \
15
+ git \
16
g++
17
18
# set workdir
19
WORKDIR /usr/src/app
20
21
# restore node_modules for front-end
22
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
26
RUN SKIP_POSTINSTALL=1 yarn install
27
28
# prepare backend by copying scripts/configs and installing node modules
0 commit comments