13 lines
289 B
Docker
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
|