Skip to content

Commit

Permalink
add /usr/lib64 path for rhel lib compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelli Little committed May 6, 2020
1 parent 6573c5f commit 90a0195
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists* /tmp/* /var/tmp/*

# add lib64 to LD_LIBRARY_PATH
RUN echo "# RHEL lib location compatibility" >> /etc/ld.so.conf.d/lib64.conf && \
echo "/usr/lib64" >> /etc/ld.so.conf.d/lib64.conf && \
ldconfig

# have trousers always connect to the tpm-emulator
ENV TCSD_USE_TCP_DEVICE=1

Expand Down

0 comments on commit 90a0195

Please sign in to comment.