Files
website/Dockerfile
Renovate Bot 8c683fd539
Some checks failed
Lint / lint (push) Failing after 6s
Build / build (pull_request) Failing after 17s
Update docker minor+patch+digest updates
2026-01-02 12:06:23 +00:00

15 lines
539 B
Docker

FROM oven/bun:1.3.5@sha256:e90cdbaf9ccdb3d4bd693aa335c3310a6004286a880f62f79b18f9b1312a8ec3 AS bun
FROM node:22.21.1-trixie-slim@sha256:1e778146a48c55e64f75543aab6fcb0f98571f54dae18a5593e0fccc27c26e05
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