7 lines
307 B
Text
7 lines
307 B
Text
1) git clone de odoo Dockerhub dans Congif-odoo
|
|
2) ajoute vim dans dockerfile
|
|
3) Update Dockerfile, (avant le COPY ./entrypoint.sh /)
|
|
|
|
# Install Python dependencies for OCA modules
|
|
COPY ./requirements.txt /tmp/requirements.txt
|
|
RUN pip install --no-cache-dir --break-system-packages -r /tmp/requirements.txt
|