aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-09-20 17:32:30 -0400
committerGalen Guyer <galen@galenguyer.com>2022-09-20 17:32:30 -0400
commite155cb815b803d83a0d6685c8ad7350b58fdd8e0 (patch)
tree3e61856b2d61689ea7d8c11e7fe1f3c435f23ea8
parentbb4871f3ba615913338bf056fb67d7abdc0066d9 (diff)
specify docker hub base imagesHEADmain
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 5d4a77b..878a111 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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/