mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
11 lines
202 B
Docker
11 lines
202 B
Docker
FROM oven/bun AS builder
|
|
WORKDIR /app
|
|
|
|
COPY package.json bun.lock .
|
|
RUN bun install --production
|
|
|
|
COPY . .
|
|
RUN bun build
|
|
|
|
# TODO: Actually do something there, either nginx or preferably an ssr bun serv
|