We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a3ff2c commit 95a0fffCopy full SHA for 95a0fff
2 files changed
docker-compose.yml
@@ -10,6 +10,10 @@ services:
10
dockerfile: node.dockerfile
11
args:
12
buildversion: 1
13
+ # environment:
14
+ # - NODE_ENV=production
15
+ # - PORT=3000
16
+ # - build=1
17
ports:
18
- "3000:3000"
19
networks:
node.dockerfile
@@ -26,7 +26,7 @@ ARG buildversion
26
ENV NODE_ENV=production
27
ENV PORT=3000
28
ENV build=$buildversion
29
-
+
30
WORKDIR /var/www
31
COPY package.json package-lock.json ./
32
RUN npm install
0 commit comments