~dricottone/container-images

ref: 86834e13c4e225b499700ba57267b6d8caa418ac container-images/srht-meta-core/Dockerfile -rw-r--r-- 367 bytes
86834e13Dominic Ricottone MoinMoin 1.9 running in PyPy a day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
FROM registry.intra.dominic-ricottone.com/srht-core:latest

RUN apk add --no-cache meta.sr.ht py3-srht py3-gunicorn

# user `meta` is created by a post-installation hook in `meta.sr.ht`
# the UID/GID do not matter, so allow the hook to manage it
USER meta

CMD ["gunicorn", "metasrht.app:app", "-b", "127.0.0.1:5000", "-c", "/etc/sr.ht/meta.sr.ht.gunicorn.conf.py"]