Skip to content

Commit

Permalink
Merge pull request #199 from Carter12s/fix-ci-images
Browse files Browse the repository at this point in the history
Added some additional deps to ci images around pkg-config and libssl-dev
  • Loading branch information
Carter12s authored Sep 24, 2024
2 parents 28c068d + cf87bda commit 676d23f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/galactic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt update && apt install -y git
RUN apt update && apt install -y ros-galactic-rosbridge-suite

# Curl required to install rust, build-essential required to build quote & proc-macro2
RUN apt update && apt install -y --fix-missing curl build-essential
RUN apt update && apt install -y --fix-missing curl build-essential libssl-dev pkg-config
# Install latest stable rust
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

Expand Down
2 changes: 1 addition & 1 deletion docker/humble/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt update && apt install -y git
RUN apt update && apt install -y ros-humble-rosbridge-suite

# Curl required to install rust, build-essential required to build quote & proc-macro2
RUN apt update && apt install -y --fix-missing curl build-essential
RUN apt update && apt install -y --fix-missing curl build-essential libssl-dev pkg-config
# Install latest stable rust
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

Expand Down

0 comments on commit 676d23f

Please sign in to comment.