Skip to content

Commit

Permalink
fix: revert arm dockerfile to node 14 (unsupported sqlite3 in 16.x)
Browse files Browse the repository at this point in the history
  • Loading branch information
user50000 committed Dec 5, 2021
1 parent 661ec5f commit 7e335fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/build-arm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# =========================
# --- BUILD NPM MODULES ---
# =========================
FROM node:16-alpine AS build
FROM node:14-alpine AS build

RUN apk add yarn g++ make python3 --no-cache
RUN apk add yarn g++ make python3 sqlite --no-cache

WORKDIR /wiki

Expand All @@ -14,7 +14,7 @@ RUN yarn --production --frozen-lockfile --non-interactive --network-timeout 1000
# ===============
# --- Release ---
# ===============
FROM node:16-alpine
FROM node:14-alpine
LABEL maintainer="requarks.io"

RUN apk add bash curl git openssh gnupg sqlite --no-cache && \
Expand Down

0 comments on commit 7e335fa

Please sign in to comment.