mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
13 lines
162 B
Docker
13 lines
162 B
Docker
FROM node:18-alpine as builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
FROM scratch
|
|
COPY --from=builder /app/dist /dist
|