Files
website/Dockerfile
Renovate Bot c6a540fe2d
Some checks failed
Lint / lint (push) Failing after 6s
Build / build (pull_request) Failing after 18s
Update docker minor+patch+digest updates
2026-04-15 12:07:10 +00:00

15 lines
540 B
Docker

FROM oven/bun:1.3.12@sha256:8956c7667fa17beb6e3c664115e66bdacfe502da5d99603626e74c197bdef160 AS bun
FROM node:22.22.2-trixie-slim@sha256:76043ed3132293c26b960ede4358d3c8ba424ee64662cd2d56318b76fcc51c4c
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