mirror of
https://github.com/khairul169/home-lab.git
synced 2025-12-15 17:41:07 +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"]
|