Browse Source

Add simple console.log for testing

main
Haris Razis 4 years ago
parent
commit
4d732490a2
No known key found for this signature in database GPG Key ID: 86A4D290ED03FAB4
  1. 2
      web/Dockerfile
  2. 1
      web/index.js
  3. 12
      web/package-lock.json

2
web/Dockerfile

@ -8,4 +8,4 @@ RUN npm install
COPY . .
EXPOSE 6000
CMD [ "npm", "run", "run" ]
CMD [ "node", "index.js" ]

1
web/index.js

@ -0,0 +1 @@
console.log('hello world')

12
web/package-lock.json

@ -0,0 +1,12 @@
{
"name": "web",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "1.0.0",
"license": "ISC"
}
}
}
Loading…
Cancel
Save