yjs-bpmn-frontend/Dockerfile
Круглицкий Никита Витальевич 27277a8844
All checks were successful
Deploy / build (push) Successful in 59s
deploy
2025-11-21 08:54:53 +06:00

23 lines
395 B
Docker

FROM node:22-alpine AS build
WORKDIR /app
RUN corepack enable
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
RUN yarn build
FROM node:22-alpine
RUN npm i -g serve
WORKDIR /app
COPY --from=build /app/dist ./dist
CMD ["serve", "-s", "dist", "-p", "80"]
#
#FROM nginx:stable-alpine
#
#COPY --from=build /app/dist /usr/share/nginx/html
#
#EXPOSE 80
#
#CMD ["nginx", "-g", "daemon off;"]