aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-09-20 17:30:16 -0400
committerGalen Guyer <galen@galenguyer.com>2022-09-20 17:30:16 -0400
commitb0dc3020dae523ce62a3e2063997244cc00fdd3d (patch)
treeeb5a669225e57b5f4ae698cc63f8636dc38a9b85
parent370f18f7abf4a4774a8bb7548389bcd9d54b84a4 (diff)
specify docker hub base imagesno-dashboard
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index f5e8ba5..d47c729 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/