Files
website/Dockerfile
Renovate Bot 0ba964a5e0
Some checks failed
Lint / lint (push) Failing after 2m40s
Build / build (pull_request) Failing after 25s
Update docker minor+patch+digest updates
2025-11-18 12:01:32 +00:00

15 lines
539 B
Docker

FROM oven/bun:1.3.2@sha256:30b6593d5646d1d695ed0c68c76ed370de538f5f49c34ed565386fd455bf6194 AS bun
FROM node:22.21.1-trixie-slim@sha256:f059f5f4b42cf40ff223fa922e43e18ef2649d8e9e8ed0e2196c90890bc5b837
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