Browse Source
fix: arm dockerfile use non-alpine base image
pull/4789/head
2.5.254
NGPixel
2 years ago
No known key found for this signature in database
GPG Key ID: 8FDA2F1757F60D63
1 changed files with
1 additions and
3 deletions
-
dev/build-arm/Dockerfile
|
|
@ -1,9 +1,7 @@ |
|
|
|
# ========================= |
|
|
|
# --- BUILD NPM MODULES --- |
|
|
|
# ========================= |
|
|
|
FROM node:14-alpine AS build |
|
|
|
|
|
|
|
RUN apk add yarn g++ make python3 sqlite --no-cache |
|
|
|
FROM node:14 AS build |
|
|
|
|
|
|
|
WORKDIR /wiki |
|
|
|
|
|
|
|