feat: dockerize dev env

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
Ameya Shenoy 2023-02-26 21:08:07 +05:30
parent a85ffe0a5b
commit 0b43a22d8e
Signed by: codingcoffee
GPG key ID: EEC8EA855D61CEEC

15
docker-compose.yml Normal file
View file

@ -0,0 +1,15 @@
---
version: '3.7'
services:
web:
image: node:16.19.1-alpine3.17
restart: unless-stopped
volumes:
- ./web:/app
working_dir: /app
entrypoint: npm run dev
ports:
- 3000:3000