[IMP] Enable custom image!

enterprise-opentkr-16.0
Oliver Yuan 2023-11-08 12:08:58 +08:00
parent c6ab26c053
commit 73a12e80bd
3 changed files with 21 additions and 0 deletions

12
.dockerignore Normal file
View File

@ -0,0 +1,12 @@
addons
config
data
extras
files
odoo
venv
.env.example
.gitignore
docker-compose.yml
LICENSE
README.md

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM odoo:16
MAINTAINER Openstone IT <info@openstone.cn>
USER root
COPY requirements.txt .
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
USER odoo

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
dashscope==1.13.0
beautifulsoup4~=4.12.2