Sfoglia il codice sorgente

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

Sam Padgett 3 anni fa
parent
commit
27ab13efd5
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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