9 lines
133 B
Docker
9 lines
133 B
Docker
FROM odoo:17.0
|
|
|
|
# Install some dependencies
|
|
RUN pip install mygeotab
|
|
|
|
# Copy the tests directory into the image
|
|
COPY tests/ /tests/
|
|
|