mirror of
https://github.com/khairul169/home-lab.git
synced 2025-04-28 16:49:36 +07:00
13 lines
129 B
Docker
13 lines
129 B
Docker
FROM oven/bun
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./package.json .
|
|
COPY ./bun.lockb .
|
|
|
|
RUN bun install
|
|
|
|
COPY . .
|
|
|
|
CMD ["bun", "run", "index.ts"]
|