ws4kp-linhanced/Dockerfile

16 lines
301 B
Text
Raw Normal View History

2025-06-12 21:35:18 -06:00
FROM node:24-alpine AS node-builder
2023-04-13 15:38:30 -06:00
WORKDIR /app
2025-06-12 21:35:18 -06:00
# RUN npm install gulp
COPY package.json .
COPY package-lock.json .
2023-04-13 11:43:52 -06:00
COPY . .
2025-06-12 21:35:18 -06:00
RUN npm install
RUN npm run build
FROM nginx:alpine
# COPY --from=node-builder /app/server /usr/share/nginx/html
COPY --from=node-builder /app/dist /usr/share/nginx/html