Files
website/Dockerfile
Renovate Bot f9c2cf108f
Some checks failed
Lint / lint (push) Failing after 6s
Build / build (pull_request) Failing after 19s
Update docker minor+patch+digest updates
2026-01-13 12:06:56 +00:00

15 lines
539 B
Docker

FROM oven/bun:1.3.6@sha256:f20d9cf365ab35529384f1717687c739c92e6f39157a35a95ef06f4049a10e4a AS bun
FROM node:22.21.1-trixie-slim@sha256:1eac9a91e15a18028fde7dfeec489201461fb8716ebdd7e7190fe7f00a9a57a1
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