mirror of
https://github.com/mue/mue.git
synced 2026-06-06 07:55:48 +02:00
12 lines
107 B
Docker
12 lines
107 B
Docker
FROM oven/bun:1.1.42
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN bun install
|
|
|
|
EXPOSE 5173
|
|
|
|
CMD ["bun", "run", "dev:host"]
|