Docker
Docker Integration
Section titled “Docker Integration”Dockerfile
Section titled “Dockerfile”FROM ubuntu:22.04
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
RUN curl -sL "https://github.com/arxohq/arxo/releases/latest/download/arxo-linux-x86_64.tar.gz" | tar xz \ && chmod +x arxo && mv arxo /usr/local/bin/
COPY . /appWORKDIR /app
RUN arxo analyze --format json --output /report.jsonDocker Compose
Section titled “Docker Compose”services: arxo: image: ubuntu:22.04 volumes: - .:/workspace working_dir: /workspace command: | sh -c " apt-get update && apt-get install -y curl && curl -sL https://github.com/arxohq/arxo/releases/latest/download/arxo-linux-x86_64.tar.gz | tar xz && chmod +x arxo && ./arxo analyze "Next steps
Section titled “Next steps”- CI/CD Integration — Overview
- GitHub Actions — Use Docker in CI