From f5f97347b3733d0e8c8c6ca61952ec33928d336a Mon Sep 17 00:00:00 2001 From: Adam Cutchin Date: Tue, 10 Dec 2024 20:56:06 -0500 Subject: [PATCH] OC prefers Containerfile be called Dockerfile --- Containerfile | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Containerfile b/Containerfile deleted file mode 100644 index efd7436..0000000 100644 --- a/Containerfile +++ /dev/null @@ -1,15 +1,0 @@ -FROM registry.access.redhat.com/ubi8/nodejs-14:latest as build - -COPY package*.json ./ -RUN npm install - - -FROM registry.access.redhat.com/ubi8/nodejs-14-minimal:latest - -COPY --from=build /opt/app-root/src/node_modules /opt/app-root/src/node_modules -COPY . /opt/app-root/src - -ENV port 8000 -EXPOSE 8000 - -CMD ["node", "index.js"] -- rgit 0.1.4