From 9fe5b0bcd58987d2090f44a993da73ad347d6bd3 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Tue, 12 Jul 2022 20:39:51 +0200 Subject: [PATCH] update base image --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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