Changeset 17307 for main/waeup.kofa/trunk/Dockerfile
- Timestamp:
- 20 Jan 2023, 10:58:52 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/Dockerfile
r17299 r17307 31 31 32 32 # we can work with official PyPI sources... 33 RUN /home/kofa/py27/bin/pip download --no-binary --no-deps waeup.kofa==${KOFA_VERSION}33 # RUN /home/kofa/py27/bin/pip download --no-binary --no-deps waeup.kofa==${KOFA_VERSION} 34 34 ## ...OR with local kofa sources (create a source pkg with `python setup.py sdist`) 35 35 ## Please keep one of the two lines above and below commented out. 36 #COPY --chown=kofa:kofa dist/waeup.kofa-${KOFA_VERSION}.tar.gz /home/kofa36 COPY --chown=kofa:kofa dist/waeup.kofa-${KOFA_VERSION}.tar.gz /home/kofa 37 37 RUN tar -xzf waeup.kofa-${KOFA_VERSION}.tar.gz 38 38 RUN rm waeup.kofa-${KOFA_VERSION}.tar.gz … … 49 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 50 51 # pin down `pip` and `setuptools` - just to ensure we have a fixed set of versions52 RUN /home/kofa/py27/bin/pip install --upgrade pip ==20.3.451 # upgrade/pin down build helpers and run the build process 52 RUN /home/kofa/py27/bin/pip install --upgrade pip zc.buildout 53 53 RUN /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 eggs55 # invisible for `pgk_resources`56 RUN /home/kofa/py27/bin/pip install "zc.buildout<3"57 54 RUN /home/kofa/py27/bin/buildout 58 55
Note: See TracChangeset for help on using the changeset viewer.