mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
12 lines
117 B
Docker
12 lines
117 B
Docker
FROM oven/bun:1.2.20-alpine AS base
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN bun install
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["bun", "run", "dev"]
|