mirror of
https://github.com/YuzuZensai/Test-IP.git
synced 2026-07-21 15:19:28 +00:00
8 lines
110 B
Docker
8 lines
110 B
Docker
FROM oven/bun:1 as build
|
|
WORKDIR /home/node/app
|
|
|
|
COPY . .
|
|
|
|
RUN bun install
|
|
|
|
CMD ["bun", "run", "src/index.ts"] |