6 lines
120 B
Docker
6 lines
120 B
Docker
FROM oven/bun:latest
|
|
WORKDIR /app
|
|
COPY package.json bun.lockb ./
|
|
RUN bun install
|
|
COPY . .
|
|
CMD ["bun", "run", "index.js"] |