Browse Source

misc: update build Dockerfile

pull/4789/head
Nicolas Giard 3 years ago
committed by GitHub
parent
commit
fcae980ed7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. 6
      dev/build/Dockerfile

6
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 && \

Loading…
Cancel
Save