From d162c9be8d036b6dc1f6302a38f43d2c63b6f12e Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 15 Feb 2020 22:42:47 -0600 Subject: [PATCH] tabs --- mastodon/Dockerfile.arm64v8 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mastodon/Dockerfile.arm64v8 b/mastodon/Dockerfile.arm64v8 index ab70b26..7b2ac46 100644 --- a/mastodon/Dockerfile.arm64v8 +++ b/mastodon/Dockerfile.arm64v8 @@ -24,7 +24,7 @@ RUN apk add --no-cache whois nodejs yarn ca-certificates git bash \ ARG UID=1001 ARG GID=1001 RUN echo "Etc/UTC" > /etc/localtime && \ - mkdir -p /opt/mastodon && \ + mkdir -p /opt/mastodon && \ addgroup --gid $GID mastodon && \ adduser -D -h /opt/mastodon -u 991 -G mastodon -h /opt/mastodon mastodon && \ echo "mastodon:`head /dev/urandom | tr -dc A-Za-z0-9 | head -c 24 | mkpasswd -s -m sha-256`" | chpasswd && \ @@ -38,8 +38,8 @@ RUN git clone -b ${TAG} ${GIT_REPOSITORY} /opt/mastodon && \ # Install dependencies WORKDIR /opt/mastodon RUN mkdir -p /opt/mastodon/.config/yarn/global && \ - touch /opt/mastodon/.config/yarn/global/.yarnclean && \ - gem install bundler:1.17.2 && \ + touch /opt/mastodon/.config/yarn/global/.yarnclean && \ + gem install bundler:1.17.2 && \ bundle config set deployment 'true' && \ bundle install -j$(nproc) --without development test --with production && \ yarn install --pure-lockfile