Changeset 17283 for main/waeup.kofa
- Timestamp:
- 16 Jan 2023, 10:55:34 (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/Dockerfile
r17281 r17283 13 13 # libs needed/useful for Pillow image manipulations 14 14 RUN apt-get install -y libjpeg-dev libfreetype6-dev libtiff-dev libopenjp2-7-dev 15 RUN apt-get install -y sudo git wget 15 # helpers not strictly necessary for running kofa but for setup and development 16 RUN apt-get install -y sudo git wget pwgen xmlstarlet 16 17 17 18 # add user `kofa` … … 44 45 WORKDIR /home/kofa/waeup.kofa 45 46 47 # set random secrets for cookies 48 RUN 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 49 RUN 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 46 51 # pin down `pip` and `setuptools` - just to ensure we have a fixed set of versions 47 52 RUN /home/kofa/py27/bin/pip install --upgrade pip==20.3.4
Note: See TracChangeset for help on using the changeset viewer.