From 4dea8a4fef4a41c1783d3f34e4e911ed08322e56 Mon Sep 17 00:00:00 2001 From: BlueFox Date: Sat, 21 Sep 2024 16:55:19 +0200 Subject: [PATCH] Fixed not being in the correct folder for subsequent RUN's after the git clone --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5cfd446..aebf596 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,14 @@ FROM alpine MAINTAINER Benjamin Burkhardt + +WORKDIR cmatrix + #git RUN apk update RUN apk add git -RUN git clone https://git.privacynerd.de/Mirrors/cmatrix.git -RUN cd cmatrix/ +RUN git clone https://git.privacynerd.de/Mirrors/cmatrix.git . +#RUN cd cmatrix/ #autoreconf -i # skip if using released tarball RUN apk add --no-cache autoconf #autoreconf -i # skip if using released tarball