mirror of
https://github.com/fosrl/pangolin.git
synced 2026-09-18 16:49:56 +02:00
8d5001ac23
Bumps the docker-dependencies group with 1 update in the / directory: node. Updates `node` from 24.18.1-alpine to 26.8-alpine --- updated-dependencies: - dependency-name: node dependency-version: 26.8-alpine dependency-type: direct:production dependency-group: docker-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
246 B
Docker
17 lines
246 B
Docker
FROM node:26.8-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk add --no-cache python3 make g++
|
|
|
|
COPY package*.json .npmrc ./
|
|
|
|
# Install dependencies
|
|
RUN npm ci
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Use tsx watch for development with hot reload
|
|
CMD ["npm", "run", "dev"]
|