File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ RUN npm run build
124
124
+ RUN cd server
125
125
+ RUN npm ci
126
126
127
- + ENTRYPOINT [ " node", " server" ]
127
+ + CMD node server/index.js
128
128
129
129
```
130
130
@@ -169,7 +169,7 @@ _./Dockerfile_
169
169
...
170
170
171
171
+ ENV PORT=8083
172
- ENTRYPOINT [ " node", " server" ]
172
+ CMD node server/index.js
173
173
174
174
```
175
175
@@ -250,8 +250,8 @@ RUN npm run build
250
250
+ RUN npm ci --only=production
251
251
252
252
ENV PORT=8083
253
- - ENTRYPOINT [ " node", " server" ]
254
- + ENTRYPOINT [ " node", " index" ]
253
+ - CMD node server/index.js
254
+ + CMD node index.js
255
255
256
256
```
257
257
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ _./Dockerfile_
66
66
67
67
- ENV PORT=8083
68
68
+ ENV PORT=8080
69
- ENTRYPOINT [ " node", " index" ]
69
+ CMD node index.js
70
70
71
71
```
72
72
You can’t perform that action at this time.
0 commit comments