akkoma-build/Dockerfile

16 lines
461 B
Docker
Raw Normal View History

ARG AKKOMA_COMMIT
2023-07-23 03:49:40 +00:00
FROM registry.nrd.li/nrdli/akkoma-base:${AKKOMA_COMMIT}
ENV PROD_SECRET_FILE=/config/prod.secret.exs
ADD akkoma /opt/akkoma
2023-07-23 03:49:40 +00:00
ADD prod.exs /opt/akkoma/config/prod.exs
USER root
2023-07-23 08:40:09 +00:00
RUN mkdir /config && touch /config/prod.secret.exs && chown -R 1000:1000 /opt && chown -R 1000:1000 /config
2023-07-23 03:49:40 +00:00
USER akkoma
2023-07-23 17:53:07 +00:00
RUN mix deps.get && mix compile
RUN mix pleroma.frontend install pleroma-fe --ref stable
RUN mix pleroma.frontend install admin-fe --ref stable