Skip to content

Commit

Permalink
Delete stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjong committed Oct 9, 2024
1 parent a17ee45 commit e3bd844
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 45 deletions.
29 changes: 0 additions & 29 deletions docker/Dockerfile.airstack-dev
Original file line number Diff line number Diff line change
Expand Up @@ -30,35 +30,6 @@ RUN apt update -y && apt install -y \

RUN /opt/ros/humble/lib/mavros/install_geographiclib_datasets.sh


# Install Python dependencies
RUN pip3 install \
empy \
future \
lxml \
matplotlib \
numpy \
pkgconfig \
psutil \
pygments \
wheel \
pymavlink \
pyyaml \
requests \
setuptools \
six \
toml \
scipy


# Override install newer openvdb 8.2.0 for compatibility with Ubuntu 22.04 https://bugs.launchpad.net/bugs/1970108
RUN apt remove -y libopenvdb*; \
git clone --recurse --branch v8.2.0-debian https://github.com/wyca-robotics/openvdb.git /opt/openvdb && \
mkdir /opt/openvdb/build && cd /opt/openvdb/build && \
cmake .. && \
make -j8 && make install && \
cd ..; rm -rf /opt/openvdb/build

# Add ability to SSH
RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
Expand Down
16 changes: 0 additions & 16 deletions docker/Dockerfile.isaac-ros
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,6 @@ RUN echo 'Etc/UTC' > /etc/timezone && \
rm -rf /var/lib/apt/lists/*

# install packages
RUN apt-get update && apt-get install -q -y --no-install-recommends \
dirmngr \
gnupg2 \
unzip \
&& rm -rf /var/lib/apt/lists/*

# setup keys
RUN set -eux; \
key='C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654'; \
export GNUPGHOME="$(mktemp -d)"; \
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; \
mkdir -p /usr/share/keyrings; \
gpg --batch --export "$key" > /usr/share/keyrings/ros2-latest-archive-keyring.gpg; \
gpgconf --kill all; \
rm -rf "$GNUPGHOME"

# setup sources.list
RUN echo "deb [ signed-by=/usr/share/keyrings/ros2-latest-archive-keyring.gpg ] http://packages.ros.org/ros2/ubuntu jammy main" > /etc/apt/sources.list.d/ros2-latest.list

Expand Down

0 comments on commit e3bd844

Please sign in to comment.