Browse Source

Fix build error for missing variable interpolation in chown instruction (#6519)

pull/4/head
Moritz Heiber 6 years ago
committed by Eugen Rochko
parent
commit
a4fd4ad1d5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Dockerfile

+ 1
- 1
Dockerfile View File

@ -72,7 +72,7 @@ RUN bundle config build.nokogiri --with-iconv-lib=/usr/local/lib --with-iconv-in
RUN addgroup -g ${GID} mastodon && adduser -h /mastodon -s /bin/sh -D -G mastodon -u ${UID} mastodon
COPY --chown=${UID}:${GID} . /mastodon
COPY --chown=mastodon:mastodon . /mastodon
VOLUME /mastodon/public/system /mastodon/public/assets /mastodon/public/packs

Loading…
Cancel
Save