ugh its alpine
All checks were successful
Deploy Encrypted Todo App / build-and-push (push) Successful in 4m24s
All checks were successful
Deploy Encrypted Todo App / build-and-push (push) Successful in 4m24s
This commit is contained in:
@ -1,7 +1,14 @@
|
||||
FROM node:24-alpine
|
||||
FROM node:24-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
python3 \
|
||||
make \
|
||||
g++ \
|
||||
libc6 \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Copy dependency files first for better caching
|
||||
COPY package.json package-lock.json ./
|
||||
|
||||
|
Reference in New Issue
Block a user