362cef5db1
Those test images are intended to be used with the runbot module. They don't contain Odoo, it's up to the user to install odoo in the running container before usage. They contains the minimal requirements to run Odoo tests: * python2 or python3 * virtualenv * a virtualenv environment provisionned with Odoo requirements.txt * a working version of wkhtml * either phantomjs or chrome-headless
40 lines
1.5 KiB
Docker
40 lines
1.5 KiB
Docker
FROM debian:stretch
|
|
ENV LANG C.UTF-8
|
|
# Needed to download requirements.txt from github
|
|
ENV ODOOVER 10.0
|
|
USER root
|
|
RUN set -x ; \
|
|
apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
ca-certificates \
|
|
curl \
|
|
libldap2-dev \
|
|
libsasl2-dev \
|
|
libxslt1-dev \
|
|
node-less \
|
|
python \
|
|
python-dev \
|
|
python-pip \
|
|
python-setuptools \
|
|
python-wheel \
|
|
virtualenv \
|
|
zlib1g-dev \
|
|
&& curl -sSL https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 -o phantomjs.tar.bz2 \
|
|
&& tar xvfO phantomjs.tar.bz2 phantomjs-2.1.1-linux-x86_64/bin/phantomjs > /usr/local/bin/phantomjs \
|
|
&& rm phantomjs.tar.bz2 \
|
|
&& chmod +x /usr/local/bin/phantomjs \
|
|
&& curl -sSL https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.stretch_amd64.deb -o /tmp/wkhtml.deb \
|
|
&& dpkg --force-depends -i /tmp/wkhtml.deb \
|
|
&& apt-get install -y -f --no-install-recommends \
|
|
&& rm /tmp/wkhtml.deb \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& groupadd -g 1000 odoo \
|
|
&& useradd -u 1000 -g odoo odoo \
|
|
&& mkdir /home/odoo \
|
|
&& chown -R odoo:odoo /home/odoo
|
|
USER odoo
|
|
ADD --chown=odoo:odoo https://raw.githubusercontent.com/odoo/odoo/${ODOOVER}/requirements.txt /home/odoo/requirements.txt
|
|
RUN ["/bin/bash", "-c", "virtualenv /home/odoo/odoovenv && source /home/odoo/odoovenv/bin/activate && pip install --no-cache-dir -r /home/odoo/requirements.txt"]
|