Files
website/Dockerfile
Renovate Bot 4af39e7f27
Some checks failed
Lint / lint (push) Failing after 6s
Build / build (pull_request) Failing after 17s
Update docker minor+patch+digest updates
2026-02-04 12:06:07 +00:00

15 lines
539 B
Docker

FROM oven/bun:1.3.8@sha256:371d30538b69303ced927bb5915697ac7e2fa8cb409ee332c66009de64de5aa3 AS bun
FROM node:22.22.0-trixie-slim@sha256:780adb393de425b91be1868956244fcdabf4a1df52d8c147b581c5372f230278
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