docker-odoo/15.0/test.Dockerfile
2022-04-18 14:31:24 -04:00

13 lines
303 B
Docker

ARG version=15
ARG image=odoo:${version}
FROM ${image}
LABEL maintainer="Odoo S.A. <info@odoo.com>"
# Install testing requirements
USER root
RUN apt-get update && \
apt-get install -y --no-install-recommends chromium && \
rm -rf /var/lib/apt/lists/*
RUN pip3 install websocket-client
USER odoo