Skip to content

Instantly share code, notes, and snippets.

@makemek
Created December 11, 2023 18:45
Show Gist options
  • Save makemek/72fccde0a0b9b74e73a1b1bf13c4fe6d to your computer and use it in GitHub Desktop.
Save makemek/72fccde0a0b9b74e73a1b1bf13c4fe6d to your computer and use it in GitHub Desktop.
libfaketime v0.9.10 docker build debian
FROM debian:bullseye-slim as e2e-builder
RUN apt-get update && apt-get install -y --no-install-recommends make=4.3-4.1 gcc=4:10.2.1-1 libc6-dev=2.31-13+deb11u7 wget=1.21-1+deb11u1 ca-certificates=20210119 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /libfaketime
RUN wget https://github.com/wolfcw/libfaketime/archive/refs/tags/v0.9.10.tar.gz -O libfaketime-0.9.10.tar.gz
RUN tar -xzvf ./libfaketime-0.9.10.tar.gz --strip-components=1 && rm ./libfaketime-0.9.10.tar.gz
RUN make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment