mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-03-27 02:41:56 +00:00
10 lines
139 B
Docker
10 lines
139 B
Docker
FROM node:20
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json ./
|
|
COPY package-lock.json ./
|
|
RUN npm install --production
|
|
COPY . .
|
|
RUN npm run build
|