Files
mue/Dockerfile
deivix13 8a8d02eed6 feat(dockerfile): add development with docker (#1119)
* feat(dockerfile): add development with docker

* fix(Doc): correct typo 'volumen' to 'volume'
2025-10-29 11:53:01 +00:00

11 lines
106 B
Docker

FROM oven/bun:latest
WORKDIR /app
COPY . .
RUN bun install
EXPOSE 5173
CMD ["bun", "run", "dev:host"]