source: main/waeup.kofa/trunk/Dockerfile @ 17283

Last change on this file since 17283 was 17283, checked in by uli, 20 months ago

Set random cookie secrets when building kofa docker.

File size: 2.5 KB
Line 
1FROM ubuntu:22.04
2ARG KOFA_VERSION=1.8.1.dev0
3
4MAINTAINER Uli Fouquet <uli@waeup.org>
5
6ARG DEBIAN_FRONTEND=noninteractive
7RUN apt-get update && apt-get install -y tzdata
8RUN apt-get install -y apt-utils build-essential
9RUN apt-get install -y python2.7-dev libxml2-dev libxslt1-dev \
10                       zlib1g-dev python3-virtualenv
11# see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl
12RUN apt-get install -y libssl-dev libffi-dev
13# libs needed/useful for Pillow image manipulations
14RUN apt-get install -y libjpeg-dev libfreetype6-dev libtiff-dev libopenjp2-7-dev
15# helpers not strictly necessary for running kofa but for setup and development
16RUN apt-get install -y sudo git wget pwgen xmlstarlet
17
18# add user `kofa`
19RUN useradd -ms /bin/bash kofa
20# set password of user `kofa` and add to group 'sudo'
21RUN echo kofa:kofa | chpasswd && adduser kofa sudo
22
23USER kofa
24ENV HOME /home/kofa
25WORKDIR /home/kofa
26
27# create a virtual env
28RUN virtualenv -p /usr/bin/python2.7 py27
29
30# get sources
31
32# we can work with official PyPI sources...
33# RUN /home/kofa/py27/bin/pip download --no-binary --no-deps waeup.kofa==${KOFA_VERSION}
34## ...OR with local kofa sources (create a source pkg with `python setup.py sdist`)
35## Please keep one of the two lines above and below commented out.
36COPY --chown=kofa:kofa dist/waeup.kofa-${KOFA_VERSION}.tar.gz /home/kofa
37RUN tar -xzf waeup.kofa-${KOFA_VERSION}.tar.gz
38RUN rm waeup.kofa-${KOFA_VERSION}.tar.gz
39RUN mv waeup.kofa-${KOFA_VERSION} waeup.kofa
40
41## make sure, all added files belong to `kofa`
42#RUN chown -R kofa:kofa /home/kofa/
43
44# install kofa -- this is the heavy part...
45WORKDIR /home/kofa/waeup.kofa
46
47# set random secrets for cookies
48RUN xmlstarlet edit -L -P -S -N x="http://namespaces.zope.org/browser" --update "//x:beakerSession/@secret" --value `pwgen -s -1 20` etc/site.zcml.in
49RUN xmlstarlet edit -L -P -S -N x="http://namespaces.zope.org/browser" --update "//x:beakerSession/@validate_key" --value "val_"`pwgen -s -1 16` etc/site.zcml.in
50
51# pin down `pip` and `setuptools` - just to ensure we have a fixed set of versions
52RUN /home/kofa/py27/bin/pip install --upgrade pip==20.3.4
53RUN /home/kofa/py27/bin/pip install --upgrade --force-reinstall setuptools==44.1.1
54# pin down `zc.buildout` - versions >= 3 make entry-points of installed eggs
55# invisible for `pgk_resources`
56RUN /home/kofa/py27/bin/pip install "zc.buildout<3"
57RUN /home/kofa/py27/bin/buildout
58
59# this dir will contain data you might want to be persistent
60VOLUME ["/home/kofa/waeup.kofa/var/"]
61
62CMD /home/kofa/waeup.kofa/bin/kofactl fg
Note: See TracBrowser for help on using the repository browser.