mirror of
https://github.com/arkorty/Reduce.git
synced 2026-03-17 16:41:42 +00:00
14 lines
142 B
Docker
14 lines
142 B
Docker
FROM oven/bun:latest
|
|
|
|
WORKDIR /site
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN bun install
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["bun", "run", "dev", "--", "--host"]
|