Explorar el Código

Revert "CONSOLE-3303: Move plugin template to the openshift GitHub org - Change docker images to quay images"

Sam Padgett hace 3 años
padre
commit
27ab13efd5
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -1,10 +1,10 @@
-FROM quay.io/cajieh0/nodejs:16 AS build
+FROM docker.io/library/node:16 AS build
 
 ADD . /usr/src/app
 WORKDIR /usr/src/app
 RUN yarn install && yarn build
 
-FROM quay.io/cajieh0/nginx:stable
+FROM docker.io/library/nginx:stable
 
 RUN chmod g+rwx /var/cache/nginx /var/run /var/log/nginx
 COPY --from=build /usr/src/app/dist /usr/share/nginx/html