From 7e335fa8c3947c7a15b99e7f4750bbb67b7319d5 Mon Sep 17 00:00:00 2001 From: John Smith Date: Sat, 4 Dec 2021 20:27:33 -0500 Subject: [PATCH] fix: revert arm dockerfile to node 14 (unsupported sqlite3 in 16.x) --- dev/build-arm/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/build-arm/Dockerfile b/dev/build-arm/Dockerfile index 45527fbf..5a3f4791 100644 --- a/dev/build-arm/Dockerfile +++ b/dev/build-arm/Dockerfile @@ -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 @@ -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 && \