Files
website/Dockerfile
Julien Valverdé 99a3fadc3a
All checks were successful
Lint / lint (push) Successful in 41s
Build refactoring
2025-09-20 03:19:45 +02:00

14 lines
372 B
Docker

FROM oven/bun:1.2.22 AS bun
FROM node:22.19.0-trixie-slim
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 run build && \
bun clean:cache && \
bun clean:modules && \
bun install --frozen-lockfile --production