Release #383

Merged
alexlebens merged 4 commits from main into release 2026-03-12 23:09:20 +00:00
Showing only changes of commit d083660f1c - Show all commits

View File

@@ -1,4 +1,6 @@
FROM dhi.io/bun:1.3.10-debian13-dev AS builder
ARG REGISTRY=dhi.io
FROM ${REGISTRY}/bun:1.3.10-debian13-dev AS builder
WORKDIR /app
COPY package.json bun.lock ./
@@ -15,7 +17,7 @@ FROM build-deps AS build
COPY . .
RUN bun run build
FROM dhi.io/bun:1.3.10-alpine3.22 AS runtime
FROM ${REGISTRY}/bun:1.3.10-alpine3.22 AS runtime
WORKDIR /app
COPY --from=prod-deps /app/node_modules /app/node_modules
COPY --from=build /app/dist /app/dist