From 153e2bf499b3bbf253c565a822573d751d8000cb Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Fri, 19 Jan 2024 02:40:32 +0800 Subject: [PATCH] chore: update dockerfile, move python3 into bottom to avoid compile isolated-vm --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ecf5d24..6653cae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN npm install -g pnpm@8.3.1 COPY . . -RUN apk add --update --no-cache python3 g++ make py3-pip +RUN apk add --update --no-cache python3 py3-pip g++ make RUN pnpm install --frozen-lockfile @@ -14,7 +14,7 @@ RUN pnpm build # make sure run after pnpm build completed # Push client(only support pure text message) -RUN pip install apprise --break-system-packages +# RUN pip install apprise --break-system-packages # remove unused source file RUN rm -rf ./src