chore: dockerize dev server

This commit is contained in:
carlosmintfan
2026-04-08 20:40:53 -03:00
parent 4b76410979
commit 908d21b0ac
2 changed files with 14 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:alpine
RUN npm install -g live-server
WORKDIR /app
EXPOSE 8080
CMD ["live-server", ".", "--port=8080", "--host=0.0.0.0", "--no-browser"]
+5
View File
@@ -0,0 +1,5 @@
services:
dev:
build: .
volumes:
- .:/app