Skip to content

Commit eab2fd4

Browse files
committed
Add missing quotes
1 parent 30e6742 commit eab2fd4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/templates/Dockerfile.amd64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ COPY app.js ./
1010

1111
USER node
1212

13-
CMD ["node, "app.js"]
13+
CMD ["node", "app.js"]

app/templates/Dockerfile.arm32v7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ COPY app.js ./
1010

1111
USER node
1212

13-
CMD ["node, "app.js"]
13+
CMD ["node", "app.js"]

app/templates/Dockerfile.windows-amd64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ RUN npm install --production
88

99
COPY app.js ./
1010

11-
CMD ["node, "app.js"]
11+
CMD ["node", "app.js"]

0 commit comments

Comments
 (0)