Files
website/Dockerfile
Renovate Bot 33145f9096
All checks were successful
Lint / lint (push) Successful in 13s
Build / build (pull_request) Successful in 29s
Update Node.js to v22.20.0
2025-09-27 12:05:07 +00:00

15 lines
540 B
Docker

FROM oven/bun:1.2.22@sha256:66ba69deede44e3af5dc542def218fdb3bcad2205900ea761dc5623bf973d2df AS bun
FROM node:22.20.0-trixie-slim@sha256:c7a6d80f9d76726291228f8878cd844cb15fcbdd2a4d54591e7d2b1903efb4e1
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