Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
f-interop-contributors
ioppytest
Commits
fdd9aa10
Commit
fdd9aa10
authored
Nov 10, 2018
by
Federico Sismondi
Browse files
Fixed dockerfile entrypoint
parent
dd007930
Changes
1
Hide whitespace changes
Inline
Side-by-side
automation/thingweb_node_wot/Dockerfile
View file @
fdd9aa10
...
...
@@ -4,7 +4,7 @@ FROM node:10
WORKDIR
/usr/src/app
# Bundle app source
COPY
. .
#
COPY . .
RUN
git clone https://github.com/eclipse/thingweb.node-wot
WORKDIR
thingweb.node-wot
...
...
@@ -18,4 +18,5 @@ RUN npm install
RUN
npm run build
EXPOSE
8080
CMD
[ "npm packages/cli/dist/cli.js examples/scripts/counter.js"]
\ No newline at end of file
#CMD [ "npm", "packages/cli/dist/cli.js", "examples/scripts/counter.js"]
ENTRYPOINT
[ "node", "packages/cli/dist/cli.js", "examples/scripts/counter.js"]
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment