11 lines
204 B
Docker
11 lines
204 B
Docker
FROM odoo:17.0
|
|
|
|
# Install some dependencies
|
|
RUN pip install mygeotab
|
|
|
|
# Copy the tests directory into the image
|
|
COPY tests/ /tests/
|
|
|
|
# Ensure the test script is executable
|
|
RUN chmod +x /tests/runtests.sh
|