Files
planilla/ui/Dockerfile
josedario87 423ca1d94f
Some checks failed
build-and-deploy / filter (push) Successful in 2s
Sync to GitHub / sync (push) Failing after 1s
build-and-deploy / build (push) Failing after 25s
build-and-deploy / deploy (push) Has been skipped
dambiando la version de node del docker de la UI
2025-05-30 16:12:14 -06:00

11 lines
199 B
Docker

# planilla/ui/Dockerfile
FROM node:22-slim AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html