From 3eb02bffffa2cd12871f5d0271e0f66822750fae Mon Sep 17 00:00:00 2001 From: aquarat Date: Wed, 22 Nov 2023 15:15:39 +0000 Subject: [PATCH] Remove unused ENV from Dockerfile --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b800726..a5b665dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,6 @@ RUN pnpm run --recursive build # Create a separate stage for pusher package. We create a temporary stage for deployment and then copy the result into # the final stage. Only the production dependencies and package implementation is part of this last stage. -ENV name="deployed-pusher" LABEL application="deployed-pusher" description="Deployed Pusher container" FROM build AS deployed-pusher @@ -54,7 +53,6 @@ ENTRYPOINT ["node", "dist/src/index.js"] # Create a separate stage for api package. We create a temporary stage for deployment and then copy the result into # the final stage. Only the production dependencies and package implementation is part of this last stage. -ENV name="deployed-api" LABEL application="deployed-api" description="Deployed API container" FROM build AS deployed-api