diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-09-20 17:32:17 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-09-20 17:32:17 -0400 |
commit | 4896487aaf4de26c5439b278bf8887f7015955e5 (patch) | |
tree | 02a420959501e6e1f1c772ec3fcb79a0082449ad | |
parent | 5d3f85a6af8f35e264e0bd95858bfb85c4212b5d (diff) |
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -FROM node:16 as build-deps +FROM docker.io/node:16 as build-deps WORKDIR /usr/src/app COPY package.json pnpm-lock.yaml ./ RUN echo "strict-peer-dependencies=false" >> .npmrc @@ -7,5 +7,5 @@ RUN npm install --global pnpm && \ COPY . ./ RUN pnpm run build -FROM cr.galenguyer.com/nginx/spa +FROM docker.io/galenguyer/nginx:spa COPY --from=build-deps /usr/src/app/dist usr/share/nginx/html/ |