aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2024-10-10 23:41:34 +0300
committerGravatar Vitaly Takmazov2024-10-10 23:41:34 +0300
commitd01dae3c4917962ddf3a29ce9464108da4b25d6f (patch)
treebf1807b9b11f16b2a4e9def3d7466990d4a377f1
parentce1361920f1b6574e9328f47a016bf29f40ae9d6 (diff)
vnext: cleanup Dockerfile warnings
-rw-r--r--vnext/server/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/vnext/server/Dockerfile b/vnext/server/Dockerfile
index 37f8c896..30f37ad0 100644
--- a/vnext/server/Dockerfile
+++ b/vnext/server/Dockerfile
@@ -8,9 +8,9 @@ RUN npm install
# Bundle APP files
COPY public/server.js .
-ENV NODE_ENV production
-ENV NPM_CONFIG_LOGLEVEL warn
-ENV DEBUG http
+ENV NODE_ENV=production
+ENV NPM_CONFIG_LOGLEVEL=warn
+ENV DEBUG=http
# Expose the listening port of your app
EXPOSE 8081