mirror of
https://github.com/mue/mue.git
synced 2026-06-05 23:45:53 +02:00
* feat(dockerfile): add development with docker * fix(Doc): correct typo 'volumen' to 'volume'
11 lines
106 B
Docker
11 lines
106 B
Docker
FROM oven/bun:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN bun install
|
|
|
|
EXPOSE 5173
|
|
|
|
CMD ["bun", "run", "dev:host"] |