Chg: alpine > bullseye-slim

This commit is contained in:
2025-12-17 19:02:32 +09:00
parent 19a9a66251
commit ed22ac88ee
+7 -1
View File
@@ -1,5 +1,5 @@
# Load Node.js
FROM --platform=$BUILDPLATFORM node:24.12.0-alpine3.23
FROM --platform=$BUILDPLATFORM node:24.12.0-bullseye-slim
# Set default env
ENV TWEET_ENABLED=true
@@ -9,6 +9,12 @@ ENV THINK_OUTPUT_ENABLED=false
# Set working directory
WORKDIR /app
# Install packages
RUN apt-get update
RUN apt-get install -y build-essential
RUN apt-get install -y python3
RUN rm -rf /var/lib/apt/lists/*
# Copy package.json
COPY ./src/package*.json ./