Skip to content

Commit 74d794a

Browse files
committed
docker: change command to use npm
Executing directly with node didn't allow to run additional commands like compiling for example.
1 parent 0046d31 commit 74d794a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers/docker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const createContainer = async (
6666
]
6767
}
6868
},
69-
Cmd: ['node', '.']
69+
Cmd: ['npm', 'run', 'start']
7070
})
7171
.then(container => container.id)
7272
.catch(err => err)

0 commit comments

Comments
 (0)