yjs-bpmn-frontend/Dockerfile
Круглицкий Никита Витальевич eed93b911d
Some checks failed
Deploy / build (push) Failing after 9s
Initial commit
2025-11-20 22:01:34 +06:00

16 lines
264 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 httpd:latest-alpine
COPY --from=build /app/dist /usr/local/apache2/htdocs/
EXPOSE 80
#CMD ["nginx", "-g", "daemon off;"]