chore: change docker base image to node:20-bookworm-slim

This commit is contained in:
moonrailgun 2024-01-15 02:47:03 +08:00
parent 6b74e605ad
commit 65c37d89a0

View File

@ -1,4 +1,4 @@
FROM node:lts-alpine FROM node:20-bookworm-slim
WORKDIR /app/tianji WORKDIR /app/tianji
@ -6,10 +6,8 @@ RUN npm install -g pnpm@8.3.1
COPY . . COPY . .
RUN apk add --update --no-cache python3 g++ make py3-pip
# Push client(only support pure text message) # Push client(only support pure text message)
RUN pip install apprise --break-system-packages RUN apt update && apt -y install apprise
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile