gitea-sync/Dockerfile

12 lines
264 B
Docker
Raw Normal View History

2024-01-27 00:26:52 +00:00
FROM oven/bun:1 as base
2023-03-09 01:09:52 +00:00
WORKDIR /app
2024-01-27 00:26:52 +00:00
FROM base as builder
2023-03-09 01:09:52 +00:00
COPY . .
2024-01-27 00:26:52 +00:00
RUN bun install --production --frozen-lockfile
RUN bun build --target bun --minify src/index.ts --outfile app.js
2023-03-09 01:09:52 +00:00
2024-01-27 00:26:52 +00:00
FROM base
COPY --from=builder /app/app.js .
ENTRYPOINT [ "bun", "run", "app.js" ]