Skip to content

Commit

Permalink
extract and use RTI's openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelarguedas committed Apr 18, 2018
1 parent 6d46cc8 commit 4f9d1a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions linux_docker_resources/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y python3-pexpect

# Get and install the RTI web binaries.
RUN cd /tmp && curl --silent https://s3.amazonaws.com/RTI/Bundles/5.3.1/Evaluation/rti_connext_dds_secure-5.3.1-eval-x64Linux3gcc5.4.0.tar.gz | tar -xz
RUN tar -xf /tmp/openssl-1.0.2n-target-x64Linux3gcc5.4.0.tar.gz
ADD rti_web_binaries_install_script.py /tmp/rti_web_binaries_install_script.py

# Add the RTI license file.
Expand Down
3 changes: 3 additions & 0 deletions linux_docker_resources/entry_point.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ case "${CI_ARGS}" in
fi
mv /tmp/rti_license.dat /home/rosbuild/rti_license.dat
export RTI_LICENSE_FILE=/home/rosbuild/rti_license.dat
mv /tmp/openssl-1.0.2n /home/rosbuild/openssl-1.0.2n
export PATH=/home/rosbuild/openssl-1.0.2n/x64Linux3gcc5.4.0/release/bin:$PATH
export LD_LIBRARY_PATH=/home/rosbuild/openssl-1.0.2n/x64Linux3gcc5.4.0/release/lib:$PATH
;;
esac
echo "done."
Expand Down

0 comments on commit 4f9d1a5

Please sign in to comment.