Files
website/Dockerfile
Renovate Bot 954b0d92f6
Some checks failed
Lint / lint (push) Failing after 6s
Build / build (pull_request) Failing after 19s
Update Node.js to v24
2026-01-13 12:07:15 +00:00

15 lines
539 B
Docker

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