You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
310 B

FROM node:22-slim
# Match the build tooling used by the production Dockerfile so native
# dependencies (e.g. Prisma) compile correctly inside the Dev Container
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
git \
make \
openssl \
python3 \
&& rm -rf /var/lib/apt/lists/*