Files
website/Dockerfile
Renovate Bot d8dc52abe0
Some checks failed
Lint / lint (push) Failing after 7s
Build / build (pull_request) Failing after 22s
Update docker minor+patch+digest updates
2025-11-17 12:01:30 +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