Files
website/Dockerfile
Renovate Bot 029af952d7
Some checks failed
Lint / lint (push) Failing after 6s
Build / build (pull_request) Failing after 18s
Update docker minor+patch+digest updates
2025-12-09 12:02:33 +00:00

15 lines
539 B
Docker

FROM oven/bun:1.3.4@sha256:7608db4aeb44f1fe8169cc8ec7055376b3013557b106407ccf092b00e426407d AS bun
FROM node:22.21.1-trixie-slim@sha256:50d7d95c827a32646b67c488b70f661725381356133884aca05cd658c32ff53c
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