Files
website/Dockerfile
Renovate Bot df6431878c
Some checks failed
Lint / lint (push) Failing after 8s
Build / build (pull_request) Failing after 23s
Update docker minor+patch+digest updates
2025-11-13 12:01:39 +00:00

15 lines
539 B
Docker

FROM oven/bun:1.3.2@sha256:30b6593d5646d1d695ed0c68c76ed370de538f5f49c34ed565386fd455bf6194 AS bun
FROM node:22.21.1-trixie-slim@sha256:fbc210eeeb62994a644bf898574bbe2989089f17bc37fadbeaf717a6f59dc366
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