# syntax=docker/dockerfile:1 # Build stage - install with uv FROM ghcr.io/astral-sh/uv:python3.14-alpine AS builder ARG VERSION RUN uv tool install --compile-bytecode "compose-farm[web]${VERSION:+==$VERSION}" # Runtime stage - minimal image without uv FROM python:3.14-alpine # Install only runtime requirements RUN apk add --no-cache openssh-client # Copy installed tool virtualenv and bin symlinks from builder COPY --from=builder /root/.local/share/uv/tools/compose-farm /root/.local/share/uv/tools/compose-farm COPY --from=builder /usr/local/bin/cf /usr/local/bin/compose-farm /usr/local/bin/ ENTRYPOINT ["cf"] CMD ["--help"]