| # Uses ORFS official image, then installs this package. | |
| FROM openroad/orfs:latest | |
| # Ensure python tooling exists | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| python3-pip python3-venv git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /workspace/edgeeda-agent | |
| COPY . /workspace/edgeeda-agent | |
| RUN pip3 install --upgrade pip \ | |
| && pip3 install -e . | |
| # Default: start a shell so you can run edgeeda commands easily. | |
| CMD ["/bin/bash"] | |