From b4c3f9db1ff40aae0a563d57db02a13acc20efda Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Tue, 10 Jul 2018 18:00:00 +0100 Subject: [PATCH] pkg/tss: Switch SF repository to our mirror hosted on github sourceforge git access is not very reliable... Signed-off-by: Rolf Neugebauer --- pkg/tss/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/tss/Dockerfile b/pkg/tss/Dockerfile index ec709f24f..5997e0041 100644 --- a/pkg/tss/Dockerfile +++ b/pkg/tss/Dockerfile @@ -24,8 +24,8 @@ COPY src/glibc_stubs/ /usr/src/glibc_stubs WORKDIR /usr/src/glibc_stubs RUN make && make install -RUN git clone https://git.code.sf.net/p/trousers/trousers /usr/src/trousers-trousers && cd /usr/src/trousers-trousers && git checkout $TROUSERS_COMMIT -RUN git clone https://git.code.sf.net/p/trousers/tpm-tools /usr/src/trousers-tpm-tools && cd /usr/src/trousers-tpm-tools && git checkout $TPM_TOOLS_COMMIT +RUN git clone https://github.com/linuxkit/mirror-trousers.git /usr/src/trousers-trousers && cd /usr/src/trousers-trousers && git checkout $TROUSERS_COMMIT +RUN git clone https://github.com/linuxkit/mirror-tpm-tools.git /usr/src/trousers-tpm-tools && cd /usr/src/trousers-tpm-tools && git checkout $TPM_TOOLS_COMMIT WORKDIR /usr/src/trousers-trousers RUN sh bootstrap.sh && \ ./configure --prefix=/ --sysconfdir=/etc LDFLAGS="-L/out/lib/ -lgetpwent_r" && \