Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions .ci/gazebo.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,34 @@
# .ci/gazebo.Dockerfile — SAKURA-II Gazebo Harmonic headless SITL image.
#
# Builds from ubuntu:22.04 + OSRF apt repository because
# ghcr.io/gazebosim/gz-sim:harmonic requires authentication.
# Runs gz sim in headless server mode (-s flag); no display required.
# Simulation world SDF and plugins are mounted read-only from ./simulation.
# No HPSC cross-toolchain (Q-H8 deferred to Phase C+).
# No secrets embedded.

FROM ghcr.io/gazebosim/gz-sim:harmonic
FROM ubuntu:22.04

USER root
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update -q && \
apt-get install -y --no-install-recommends \
procps \
curl \
gnupg \
lsb-release \
ca-certificates \
procps \
&& rm -rf /var/lib/apt/lists/*

# Add OSRF Gazebo Harmonic apt repository.
RUN curl -fsSL https://packages.osrfoundation.org/gazebo.gpg \
-o /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg && \
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] \
http://packages.osrfoundation.org/gazebo/ubuntu-stable $(lsb_release -cs) main" \
> /etc/apt/sources.list.d/gazebo-stable.list && \
apt-get update -q && \
apt-get install -y --no-install-recommends \
gz-sim8 \
&& rm -rf /var/lib/apt/lists/*

RUN mkdir -p /app/simulation
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ rust/_lint_probe/Cargo.lock

# ─── C / CMake ────────────────────────────────────────────────────────────────
build/
build*/
build_cov/
*.o
*.a
Expand Down
Loading
Loading