Files
website/Dockerfile
Renovate Bot d603e0ca2c
Some checks failed
Build / build (pull_request) Failing after 19s
Lint / lint (push) Failing after 6s
Update docker minor+patch+digest updates
2025-11-04 12:04:55 +00:00

15 lines
539 B
Docker

FROM oven/bun:1.3.1@sha256:9c5d3c92b234b4708198577d2f39aab7397a242a40da7c2f059e51b9dc62b408 AS bun
FROM node:22.21.1-trixie-slim@sha256:8b9d306f8e6d9e3d2d707df9d440d526433ad633bbaaaff608f51d0b3f83063e
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