adding devcontainer files;

using standart dockerfile with alpine
This commit is contained in:
Dobromir Popov
2023-03-15 14:32:39 +00:00
parent 1c15463b21
commit 027b7cd984
4 changed files with 106 additions and 43 deletions

14
docker-compose.debug.yml Normal file
View File

@ -0,0 +1,14 @@
version: '3.4'
services:
kevinai:
image: kevinai
build:
context: .
dockerfile: ./Dockerfile
environment:
NODE_ENV: development
ports:
- 3000:3000
- 9229:9229
command: ["node", "--inspect=0.0.0.0:9229", "web/server.js"]