feat(dockerfile): add development with docker (#1119)

* feat(dockerfile): add development with docker

* fix(Doc): correct typo 'volumen' to 'volume'
This commit is contained in:
deivix13
2025-10-29 12:53:01 +01:00
committed by GitHub
parent ac3924aaf7
commit 8a8d02eed6
2 changed files with 28 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM oven/bun:latest
WORKDIR /app
COPY . .
RUN bun install
EXPOSE 5173
CMD ["bun", "run", "dev:host"]