Nicolas Giard
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
dev/build-arm/Dockerfile
|
|
@ -1,7 +1,9 @@ |
|
|
|
# ========================= |
|
|
|
# --- BUILD NPM MODULES --- |
|
|
|
# ========================= |
|
|
|
FROM node:14 AS build |
|
|
|
FROM node:16 AS build |
|
|
|
|
|
|
|
RUN apk add yarn g++ make cmake python3 --no-cache |
|
|
|
|
|
|
|
WORKDIR /wiki |
|
|
|
|
|
|
@ -12,7 +14,7 @@ RUN yarn --production --frozen-lockfile --non-interactive --network-timeout 1000 |
|
|
|
# =============== |
|
|
|
# --- Release --- |
|
|
|
# =============== |
|
|
|
FROM node:14-alpine |
|
|
|
FROM node:16-alpine |
|
|
|
LABEL maintainer="requarks.io" |
|
|
|
|
|
|
|
RUN apk add bash curl git openssh gnupg sqlite --no-cache && \ |
|
|
|