Files
gymflow/Dockerfile.node-apps
2025-12-18 13:03:12 +02:00

13 lines
289 B
Docker

FROM node:lts-slim
# Install build dependencies for better-sqlite3 and other native modules
RUN apt-get update && apt-get install -y \
python3 \
build-essential \
openssl \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /usr/src/app