push to version 2.5.285

This commit is contained in:
Sebastian Hugentobler 2022-07-02 19:11:43 +02:00
parent c8534e86e4
commit e5acdd43c9

View File

@ -5,7 +5,8 @@ RUN apk add --no-cache \
npm \ npm \
bash \ bash \
python3 \ python3 \
make make \
sed
#ENV NODE_ENV=production #ENV NODE_ENV=production
@ -17,7 +18,7 @@ RUN npm install -g \
webpack-cli \ webpack-cli \
node-gyp node-gyp
ENV WIKIJS_VERSION=v2.5.275 ENV WIKIJS_VERSION=v2.5.285
RUN git clone https://github.com/Requarks/wiki.git -b $WIKIJS_VERSION /build RUN git clone https://github.com/Requarks/wiki.git -b $WIKIJS_VERSION /build
@ -26,6 +27,7 @@ RUN npm install --legacy-peer-deps
# don't know why this is needed here too, but what the hell # don't know why this is needed here too, but what the hell
RUN npm install --save-dev webpack webpack-cli RUN npm install --save-dev webpack webpack-cli
RUN npx webpack --profile --config dev/webpack/webpack.prod.js RUN npx webpack --profile --config dev/webpack/webpack.prod.js
RUN sed -i '0,/.*"dev".*/s//"dev": false,/' package.json
FROM thallian/confd-env:latest FROM thallian/confd-env:latest