[temp-fix] use custome image at deploy time

This commit is contained in:
2026-04-11 23:12:38 -04:00
parent 9642722619
commit fe18a6f8f0
2 changed files with 9 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
services: services:
app: app:
image: odoo:19 # image: odoo:19
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped restart: unless-stopped
environment: environment:
- HOST=${DB_HOST} - HOST=${DB_HOST}

5
dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM odoo:19
USER root
COPY ./modules /mnt/extra-addons
RUN chown -R odoo:odoo /mnt/extra-addons
USER odoo