From fcae980ed734552bd7202f97fab3bf6775834743 Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Fri, 3 Dec 2021 22:41:21 -0500 Subject: [PATCH] misc: update build Dockerfile --- dev/build/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/build/Dockerfile b/dev/build/Dockerfile index af5d2173..1d2f3133 100644 --- a/dev/build/Dockerfile +++ b/dev/build/Dockerfile @@ -1,9 +1,9 @@ # ==================== # --- Build Assets --- # ==================== -FROM node:14-alpine AS assets +FROM node:16-alpine AS assets -RUN apk add yarn g++ make python --no-cache +RUN apk add yarn g++ make --no-cache WORKDIR /wiki @@ -23,7 +23,7 @@ RUN yarn --production --frozen-lockfile --non-interactive # =============== # --- Release --- # =============== -FROM node:14-alpine +FROM node:16-alpine LABEL maintainer="requarks.io" RUN apk add bash curl git openssh gnupg sqlite --no-cache && \