logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://anongit.hacktivis.me/git/pleroma.git/

Dockerfile (719B)


  1. FROM ubuntu:24.04
  2. ENV DEBIAN_FRONTEND=noninteractive \
  3. LANG=C.UTF-8 \
  4. LC_ALL=C.UTF-8
  5. RUN apt-get update && apt-get install -y --no-install-recommends \
  6. ca-certificates \
  7. gosu \
  8. libstdc++6 \
  9. libncurses6 libncursesw6 \
  10. openssl libssl3 \
  11. libmagic1t64 file \
  12. postgresql-client \
  13. ffmpeg imagemagick libimage-exiftool-perl \
  14. libvips42t64 \
  15. unzip \
  16. curl \
  17. && rm -rf /var/lib/apt/lists/*
  18. WORKDIR /opt/pleroma
  19. COPY pleroma-host-release-entrypoint.sh /usr/local/bin/pleroma-host-release-entrypoint.sh
  20. RUN chmod +x /usr/local/bin/pleroma-host-release-entrypoint.sh
  21. ENTRYPOINT ["/usr/local/bin/pleroma-host-release-entrypoint.sh"]
  22. CMD ["/opt/pleroma/bin/pleroma", "start"]