Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install libfaketime in base Docker image #644

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading