File: package.dffedora

package info (click to toggle)
odoo 18.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 878,716 kB
  • sloc: javascript: 927,937; python: 685,670; xml: 388,524; sh: 1,033; sql: 415; makefile: 26
file content (73 lines) | stat: -rw-r--r-- 1,987 bytes parent folder | download
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
# Please note that this Dockerfile is used for testing nightly builds and should
# not be used to deploy Odoo
FROM fedora:38
MAINTAINER Odoo S.A. <info@odoo.com>

# Dependencies and postgres
RUN dnf update -d 0 -e 0 -y && \
    dnf install -d 0 -e 0 \
        createrepo \
        libsass \
        postgresql \
        postgresql-contrib \
        postgresql-devel \
        postgresql-libs \
        postgresql-server \
        python3-PyPDF2 \
        python3-asn1crypto \
        python3-babel \
        python3-cbor2 \
        python3-chardet \
        python3-cryptography \
        python3-dateutil \
        python3-decorator \
        python3-devel \
        python3-docutils \
        python3-freezegun \
        python3-geoip2 \
        python3-gevent \
        python3-greenlet \
        python3-idna \
        python3-jinja2 \
        python3-libsass \
        python3-lxml \
        python3-markupsafe \
        python3-mock \
        python3-num2words \
        python3-ofxparse.noarch \
        python3-openpyxl \
        python3-passlib \
        python3-pillow \
        python3-polib \
        python3-psutil \
        python3-psycopg2 \
        python3-pyldap \
        python3-pyOpenSSL \
        python3-pyserial \
        python3-pytz \
        python3-pyusb \
        python3-qrcode \
        python3-reportlab \
        python3-requests \
        python3-rjsmin \
        python3-six \
        python3-stdnum \
        python3-vobject \
        python3-werkzeug \
        python3-wheel \
        python3-xlrd \
        python3-xlsxwriter \
        python3-xlwt \
        python3-zeep \
        rpmdevtools -y && \
    dnf clean all

# Postgres configuration
RUN mkdir -p /var/lib/postgres/data
RUN chown -R postgres:postgres /var/lib/postgres/data
RUN su postgres -c "initdb -D /var/lib/postgres/data -E UTF-8"
RUN cp /usr/share/pgsql/postgresql.conf.sample /var/lib/postgres/data/postgresql.conf

RUN echo "PS1=\"[\u@nightly-tests] # \"" > ~/.bashrc

USER odoo