Mercurial > sat_docs
view docker/sat/Dockerfile @ 153:df75b62e653e
flatpak (build_manifest): some fixes needed after runtime update:
- removed `--optimize=1` for lxml, as it is making the build fail
- added build flag on x86_64 for Pillow (will need to be adapted if we build on other architectures)
- added a module for Python 2.7.16, Python 2 not being included anymore in the runtime
- DEFAULT_MANIFEST modules are put at the beginning of modules
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 28 Jun 2019 15:19:47 +0200 |
parents | a7b8bb39736b |
children |
line wrap: on
line source
############################################################### # # # Salut à Toi/sat # # This Dockerfile build backend image with media # # Salut à Toi is a multi-frontends multi-purposes XMPP client # # # ############################################################### FROM salutatoi/media:latest MAINTAINER Goffi <goffi@goffi.org> ######### # Ports # ######### # IMAP and SMTP EXPOSE 10143 10125 ######## # MISC # ######## # /tmp is used in libervia for avatar upload/radiocol VOLUME /tmp ########## # LAUNCH # ########## ENTRYPOINT ["sat"] # foreground by default CMD ["fg"]