Files
gps-denied-onboard/docker/companion-tier1.Dockerfile
Oleksandr Bezdieniezhnykh a7b3e60716
ci/woodpecker/push/02-build-push Pipeline failed
[autodev] Update Jetson test environment and satellite-provider integration
- Added `.env.test` to `.gitignore` to exclude test environment variables.
- Enhanced `docker-compose.test.jetson.yml` to include the real satellite-provider .NET service and its PostgreSQL database, replacing the mock service.
- Updated test execution policy to mandate all tests run exclusively on Jetson hardware, deprecating the previous two-tier model.
- Revised documentation in `_docs/LESSONS.md`, `_docs/02_document/tests/environment.md`, and `_docs/04_deploy/ci_cd_pipeline.md` to reflect the new testing strategy and environment setup.
- Improved `run-tests-jetson.sh` script to ensure proper environment variable handling and satellite-provider integration.

This commit aligns the testing framework with production environments, enhancing reliability and coverage.
2026-05-20 13:22:51 +03:00

64 lines
2.3 KiB
Docker

# Tier-1 companion image — multi-stage.
#
# Per `_docs/02_document/deployment/containerization.md` § Component Dockerfiles.
# Concrete deps land with the consuming component tasks; bootstrap (AZ-263)
# ships the multi-stage skeleton + healthcheck wiring.
# Stage 1: system deps -------------------------------------------------------
FROM ubuntu:22.04 AS system-deps
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
build-essential \
cmake \
git \
libpq-dev \
python3.10 \
python3.10-venv \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
# Stage 2: python deps -------------------------------------------------------
FROM system-deps AS python-deps
WORKDIR /opt/gps-denied
COPY pyproject.toml ./
COPY src ./src
RUN python3 -m venv /opt/venv \
&& /opt/venv/bin/pip install --upgrade pip \
&& /opt/venv/bin/pip install --no-cache-dir -e ".[dev]"
ENV PATH="/opt/venv/bin:${PATH}"
# Stage 3: native build ------------------------------------------------------
FROM python-deps AS cpp-build
WORKDIR /opt/gps-denied
COPY . .
RUN cmake -S . -B build -DBUILD_TESTING=OFF \
&& cmake --build build --parallel
# Stage 4: runtime -----------------------------------------------------------
FROM ubuntu:22.04 AS runtime
ARG DEBIAN_FRONTEND=noninteractive
# `python3` (the metapackage) is required so `/usr/bin/python3 -> python3.10`
# symlink exists; the venv copied from python-deps has
# `/opt/venv/bin/python3 -> /usr/bin/python3` and would otherwise be a dangling
# symlink, making the ENTRYPOINT `python3 ...` exec fail.
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
python3 \
python3.10 \
libpq5 \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
COPY --from=python-deps /opt/venv /opt/venv
COPY --from=cpp-build /opt/gps-denied/build /opt/gps-denied/build
COPY --from=cpp-build /opt/gps-denied/src /opt/gps-denied/src
ENV PATH="/opt/venv/bin:${PATH}"
ENV PYTHONPATH="/opt/gps-denied/src"
WORKDIR /opt/gps-denied
HEALTHCHECK --interval=10s --timeout=3s --start-period=15s --retries=3 \
CMD python3 -m gps_denied_onboard.healthcheck || exit 1
ENTRYPOINT ["python3", "-m", "gps_denied_onboard.runtime_root"]