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

Last change on this file since 17277 was 17277, checked in by Henrik Bettermann, 21 months ago

Get Sofa running on MacOS.

File size: 2.1 KB
Line 
1FROM ubuntu:20.04
2ARG KOFA_VERSION=1.8.1
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
15RUN apt-get install -y sudo git wget
16
17# add user `kofa`
18RUN useradd -ms /bin/bash kofa
19# set password of user `kofa` and add to group 'sudo'
20RUN echo kofa:kofa | chpasswd && adduser kofa sudo
21
22USER kofa
23ENV HOME /home/kofa
24WORKDIR /home/kofa
25
26# create a virtual env
27RUN virtualenv -p /usr/bin/python2.7 py27
28
29# get sources
30
31# we can work with official PyPI sources...
32RUN /home/kofa/py27/bin/pip download --no-binary --no-deps waeup.kofa==${KOFA_VERSION}
33## ...OR with local kofa sources (create a source pkg with `python setup.py sdist`)
34## Please keep one of the two lines above and below commented out.
35# COPY --chown=kofa:kofa dist/waeup.kofa-${KOFA_VERSION}.tar.gz /home/kofa
36RUN tar -xzf waeup.kofa-${KOFA_VERSION}.tar.gz
37RUN rm waeup.kofa-${KOFA_VERSION}.tar.gz
38RUN mv waeup.kofa-${KOFA_VERSION} waeup.kofa
39
40## make sure, all added files belong to `kofa`
41#RUN chown -R kofa:kofa /home/kofa/
42
43# install kofa -- this is the heavy part...
44WORKDIR /home/kofa/waeup.kofa
45
46# pin down `pip` and `setuptools` - just to ensure we have a fixed set of versions
47RUN /home/kofa/py27/bin/pip install --upgrade pip==20.3.4
48RUN /home/kofa/py27/bin/pip install --upgrade --force-reinstall setuptools==44.1.1
49# pin down `zc.buildout` - versions >= 3 make entry-points of installed eggs
50# invisible for `pgk_resources`
51RUN /home/kofa/py27/bin/pip install "zc.buildout<3"
52RUN /home/kofa/py27/bin/buildout
53
54# this dir will contain data you might want to be persistent
55VOLUME ["/home/kofa/waeup.kofa/var/"]
56
57CMD /home/kofa/waeup.kofa/bin/kofactl fg
Note: See TracBrowser for help on using the repository browser.