From ad2062713c1d2acddc6d8365c46d94ca811ae931 Mon Sep 17 00:00:00 2001 From: LouisLam Date: Tue, 14 Sep 2021 19:04:56 +0800 Subject: [PATCH] fix pi4 on docker --- dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 6622def8..1095aab2 100644 --- a/dockerfile +++ b/dockerfile @@ -1,4 +1,5 @@ # DON'T UPDATE TO node:14-bullseye-slim, see #372. +# If the image changed, the second stage image should be changed too FROM node:14-buster-slim AS build WORKDIR /app @@ -12,7 +13,7 @@ RUN apt update && \ COPY . . RUN npm install --legacy-peer-deps && npm run build && npm prune --production -FROM node:14-bullseye-slim AS release +FROM node:14-buster-slim AS release WORKDIR /app # Install Apprise,