diff --git a/lufi/Dockerfile b/lufi/Dockerfile index 22425a7..5b51253 100644 --- a/lufi/Dockerfile +++ b/lufi/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update && \ RUN cpan Carton RUN git clone https://framagit.org/fiat-tux/hat-softwares/lufi.git /usr/lufi && \ cd /usr/lufi && \ - carton install --deployment --without=test --without=postgresql --without=mysql --without=swift-storage --without=ldap + carton install --deployment --without=test --without=postgresql --without=mysql --without=swift-storage --without=ldap --without=htpasswd ENV GID=1000 \ UID=1000 \ diff --git a/rsync/Dockerfile b/rsync/Dockerfile index c078eb9..4223a2e 100644 --- a/rsync/Dockerfile +++ b/rsync/Dockerfile @@ -4,6 +4,7 @@ FROM alpine:latest ARG RELEASE=latest RUN apk add --no-cache --virtual .run-deps rsync openssh tzdata curl ca-certificates flock bash tar wget unzip && rm -rf /var/cache/apk/* RUN echo $RELEASE +RUN env RUN wget -P /tmp https://github.com/benbjohnson/litestream/releases/download/${RELEASE}/litestream-${RELEASE}-linux-arm7-static.tar.gz && \ tar -C /usr/local/bin/ -xzvf /tmp/litestream-${RELEASE}-linux-arm7-static.tar.gz