Files
website/Dockerfile
Renovate Bot dd35d35ecc
All checks were successful
Lint / lint (push) Successful in 13s
Build / build (pull_request) Successful in 29s
Update oven/bun Docker tag to v1.2.23
2025-10-03 14:47:33 +00:00

15 lines
540 B
Docker

FROM oven/bun:1.2.23@sha256:6ebf306367da43ad75c4d5119563e24de9b66372929ad4fa31546be053a16f74 AS bun
FROM node:22.19.0-trixie-slim@sha256:29942871c60d79cfa155b67136b8a26a9c635684a41484ca50fdd8dd6ca31c52
COPY --from=bun /usr/local/bin/bun \
/usr/local/bin/bunx \
/usr/local/bin/
WORKDIR /app
COPY ./ ./
RUN bun install --frozen-lockfile && \
bun lint:tsc && \
bun lint:biome && \
bun run build && \
bun clean:cache && \
bun clean:modules && \
bun install --frozen-lockfile --production