split compile and fe install steps

This commit is contained in:
Kegan Myers 2023-07-23 12:53:07 -05:00
parent 2389535593
commit 06384b9a19

View file

@ -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