gooderp18绿色标准版
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

74 lines
1.9KB

  1. # Please note that this Dockerfile is used for testing nightly builds and should
  2. # not be used to deploy Odoo
  3. FROM fedora:38
  4. MAINTAINER Odoo S.A. <info@odoo.com>
  5. # Dependencies and postgres
  6. RUN dnf update -d 0 -e 0 -y && \
  7. dnf install -d 0 -e 0 \
  8. createrepo \
  9. libsass \
  10. postgresql \
  11. postgresql-contrib \
  12. postgresql-devel \
  13. postgresql-libs \
  14. postgresql-server \
  15. python3-PyPDF2 \
  16. python3-asn1crypto \
  17. python3-babel \
  18. python3-cbor2 \
  19. python3-chardet \
  20. python3-cryptography \
  21. python3-dateutil \
  22. python3-decorator \
  23. python3-devel \
  24. python3-docutils \
  25. python3-freezegun \
  26. python3-geoip2 \
  27. python3-gevent \
  28. python3-greenlet \
  29. python3-idna \
  30. python3-jinja2 \
  31. python3-libsass \
  32. python3-lxml \
  33. python3-markupsafe \
  34. python3-mock \
  35. python3-num2words \
  36. python3-ofxparse.noarch \
  37. python3-openpyxl \
  38. python3-passlib \
  39. python3-pillow \
  40. python3-polib \
  41. python3-psutil \
  42. python3-psycopg2 \
  43. python3-pyldap \
  44. python3-pyOpenSSL \
  45. python3-pyserial \
  46. python3-pytz \
  47. python3-pyusb \
  48. python3-qrcode \
  49. python3-reportlab \
  50. python3-requests \
  51. python3-rjsmin \
  52. python3-six \
  53. python3-stdnum \
  54. python3-vobject \
  55. python3-werkzeug \
  56. python3-wheel \
  57. python3-xlrd \
  58. python3-xlsxwriter \
  59. python3-xlwt \
  60. python3-zeep \
  61. rpmdevtools -y && \
  62. dnf clean all
  63. # Postgres configuration
  64. RUN mkdir -p /var/lib/postgres/data
  65. RUN chown -R postgres:postgres /var/lib/postgres/data
  66. RUN su postgres -c "initdb -D /var/lib/postgres/data -E UTF-8"
  67. RUN cp /usr/share/pgsql/postgresql.conf.sample /var/lib/postgres/data/postgresql.conf
  68. RUN echo "PS1=\"[\u@nightly-tests] # \"" > ~/.bashrc
  69. USER odoo
上海开阖软件有限公司 沪ICP备12045867号-1