Skip to content

Commit

Permalink
Merge pull request #644 from ucb-rit/docker_install_libfaketime
Browse files Browse the repository at this point in the history
Install libfaketime in base Docker image
  • Loading branch information
matthew-li authored Oct 10, 2024
2 parents 3a3f35e + ada6654 commit db54c5f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion bootstrap/development/docker/images/os.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM rockylinux/rockylinux:8.8
RUN dnf update -y && \
dnf install -y \
gcc \
git \
make \
wget \
openssl-devel \
Expand All @@ -28,4 +29,10 @@ RUN rm -rf /usr/src/python310
RUN echo "/usr/local/lib" > /etc/ld.so.conf.d/local.conf && \
ldconfig

# TODO: libfaketime
# Install libfaketime.
RUN git clone https://github.com/wolfcw/libfaketime.git /opt/libfaketime && \
cd /opt/libfaketime && \
make && \
make install && \
dnf clean all && \
rm -rf /opt/libfaketime

0 comments on commit db54c5f

Please sign in to comment.