Intentando mas cosas
CD for startPage / build (push) Failing after 1m19s

This commit is contained in:
2023-07-01 03:22:56 -04:00
parent 98ee4a329b
commit 8be708cd50
3 changed files with 46 additions and 20 deletions
+13
View File
@@ -0,0 +1,13 @@
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