Files
start/Dockerfile
Daniel Cortés 8be708cd50
Some checks failed
CD for startPage / build (push) Failing after 1m19s
Intentando mas cosas
2023-07-01 03:22:56 -04:00

13 lines
198 B
Docker

FROM node:20 as builder
WORKDIR /build
COPY package.json package-lock.json ./
RUN npm install
COPY ./ ./
RUN ./build.sh
FROM nginx:latest
COPY --from=builder /build/public /usr/share/nginx/html