From 8749d8bd4a8dfc93ac9cc5d02b94c95ba9fe3b79 Mon Sep 17 00:00:00 2001 From: Dryusdan <=> Date: Fri, 24 Nov 2017 02:04:02 +0100 Subject: [PATCH] remove signar --- Dockerfile | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index a690a77..9c45d5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,20 +34,17 @@ RUN export BUILD_DEPS="build-base \ && git clone -b master https://github.com/diaspora/diaspora.git /diaspora \ && cd /diaspora \ && rm Gemfile.lock \ -&& gem uninstall eye \ -&& gem install eye -v 0.9.2.nosigar \ -&& chmod +x script/server \ -&& bin/bundle config --global silence_root_warning 1 \ -&& bin/bundle config timeout 120 \ -&& bin/bundle install --retry 4 --without test development \ -&& apk del ${BUILD_DEPS} \ -&& rm -rf /tmp/* /var/cache/apk/* /tmp/* /root/.gnupg /root/.cache/ /diaspora/.git - +&& chmod +x script/server COPY rootfs/ / -RUN chmod +x /usr/local/bin/startup \ - && chmod +x /etc/s6.d/diaspora/run +RUN bin/bundle config --global silence_root_warning 1 \ +&& bin/bundle config timeout 120 \ +&& bin/bundle install --retry 4 --without test development \ +&& apk del ${BUILD_DEPS} \ +&& rm -rf /tmp/* /var/cache/apk/* /tmp/* /root/.gnupg /root/.cache/ /diaspora/.git \ +&& chmod +x /usr/local/bin/startup \ +&& chmod +x /etc/s6.d/diaspora/run VOLUME ["/config", "/diaspora/public"] EXPOSE 8080