mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-08-11 09:13:47 -04:00
13 lines
220 B
Docker
13 lines
220 B
Docker
FROM oven/bun AS builder
|
|
WORKDIR /app
|
|
|
|
COPY package.json bun.lock .
|
|
RUN bun install --production
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8081
|
|
CMD ["bun", "dev"]
|
|
|
|
# TODO: Actually do something there, either nginx or preferably an ssr bun serv
|