10 lines
102 B
Docker
10 lines
102 B
Docker
|
FROM oven/bun
|
||
|
|
||
|
COPY . /app
|
||
|
|
||
|
WORKDIR /app/server
|
||
|
|
||
|
RUN bun install
|
||
|
|
||
|
CMD bun run /app/server/src/main.ts
|