Skip to content

Commit 1755ef3

Browse files
committed
feat: tweak CI test
1 parent 1d74b0a commit 1755ef3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

19.0/templates/odoo.cfg.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ log_level = {{ default .Env.LOG_LEVEL "info" }}
2222
max_cron_threads = {{ default .Env.MAX_CRON_THREADS "2" }}
2323
workers = {{ default .Env.WORKERS "4" }}
2424
logfile = {{ default .Env.LOGFILE "None" }}
25-
log_db = {{ default .Env.LOG_DB "False" }}
25+
log_db = {{ default .Env.LOG_DB "None" }}
2626
logrotate = True
2727
syslog = {{ default .Env.SYSLOG "False" }}
2828
running_env = {{ default .Env.RUNNING_ENV "dev" }}

example/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM ghcr.io/camptocamp/docker-odoo-project:16.0-master-latest
2-
MAINTAINER Camptocamp
2+
LABEL maintainer="Camptocamp"
3+
34

45
# For installing odoo you have two possibility
56
# 1. either adding the whole root directory
@@ -32,6 +33,7 @@ COPY ./requirements.txt /odoo/
3233
USER odoo
3334
WORKDIR /odoo
3435
# run in a virtualenv
36+
RUN /odoo/.venv/bin/pip install -U pip setuptools
3537
RUN /odoo/.venv/bin/pip install -r requirements.txt
3638
#RUN /odoo/.venv/bin/pip install -r /odoo/src/odoo/requirements.txt
3739
RUN /odoo/.venv/bin/pip install -e /odoo/src/odoo

example/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Composition for development
22

3-
version: '2'
4-
53
services:
64
odoo:
75
tty: true

example/odoo/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.0.0
1+
16.0.0

0 commit comments

Comments
 (0)