-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
88 lines (84 loc) · 1.99 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# DOCKER image to run odoo 16 with Odoo Community Backports and OCA addons
FROM debian:11.6
MAINTAINER Rubén Cabrera Martínez <[email protected]>
EXPOSE 8069 8071 8072
ENV LANG C.UTF-8
RUN apt-get update \
&& apt-get install \
software-properties-common \
wget \
gnupg2 \
-y
RUN apt-get update && apt-get install \
git \
libssl-dev \
locales \
net-tools \
node-clean-css \
node-less \
postgresql-client \
python3-apt \
python3-babel \
python3-cups \
python3-dateutil \
python3-decorator \
python3-dev \
python3-docutils \
python3-feedparser \
python3-gevent \
python3-geoip \
python3-jinja2 \
python3-lxml \
python3-mako \
python3-mock \
python3-openid \
python3-openssl \
python3-passlib \
python3-pip \
python3-psutil \
python3-psycopg2 \
python3-pydot \
python3-pyinotify \
python3-pyldap \
python3-pyparsing \
python3-pypdf2 \
python3-qrcode \
python3-renderpm \
python3-reportlab \
python3-requests \
python3-simplejson \
python3-tz \
python3-unicodecsv \
python3-unittest2 \
python3-vatnumber \
python3-vobject \
python3-watchdog \
python3-werkzeug \
python3-yaml \
xauth \
xfonts-75dpi \
xfonts-base \
xfonts-utils \
-y
RUN wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.stretch_amd64.deb
RUN dpkg -i wkhtmltox_0.12.5-1.stretch_amd64.deb
RUN pip3 install \
backports.functools_lru_cache \
bokeh \
cssutils \
dbfpy \
html2text \
libsass \
odoorpc \
ofxparse \
openupgradelib \
num2words \
pandas \
phonenumbers \
polib \
psycogreen \
twilio \
unidecode \
xlrd \
zeep \
zklib