diff --git a/Dockerfile b/Dockerfile index 2384552..00e1760 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,14 +4,12 @@ FROM registry.nrd.li/nrdli/akkoma-base:${AKKOMA_COMMIT} ENV PROD_SECRET_FILE=/config/prod.secret.exs ADD akkoma /opt/akkoma -ADD .git /opt/.git ADD prod.exs /opt/akkoma/config/prod.exs USER root RUN mkdir /config && touch /config/prod.secret.exs && chown -R 1000:1000 /opt && chown -R 1000:1000 /config USER akkoma -RUN mix deps.get && \ - mix compile && \ - mix pleroma.frontend install pleroma-fe --ref stable && \ - mix pleroma.frontend install admin-fe --ref stable +RUN mix deps.get && mix compile +RUN mix pleroma.frontend install pleroma-fe --ref stable +RUN mix pleroma.frontend install admin-fe --ref stable