mirror of
https://github.com/opus-tango/socialdb-sh.git
synced 2026-03-19 19:52:54 +00:00
15 lines
243 B
Docker
15 lines
243 B
Docker
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
COPY pnpm-lock.yaml ./
|
|
|
|
RUN npm install -g pnpm
|
|
|
|
RUN pnpm install
|
|
|
|
# Copy the rest of the application source, excluding node_modules via .dockerignore
|
|
COPY . .
|
|
|
|
CMD ["pnpm", "run", "dev"] |