diff --git a/Dockerfile b/Dockerfile index 6d53a97..d0f5c7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 as builder +FROM docker.io/alpine:3.16 as builder RUN apk add --no-cache \ git \ @@ -25,11 +25,11 @@ RUN git clone https://github.com/Requarks/wiki.git -b $WIKIJS_VERSION /build WORKDIR /build RUN npm install --legacy-peer-deps # don't know why this is needed here too, but what the hell -RUN npm install --save-dev webpack webpack-cli +RUN npm install --legacy-peer-deps --save-dev webpack webpack-cli 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 docker.io/thallian/confd-env:3.16 ENV NODE_ENV=production