mirror of https://github.com/odoo/docker.git
parent
4cb56b39df
commit
c3a3f73d48
|
@ -0,0 +1,11 @@
|
|||
ARG version=16
|
||||
ARG image=odoo:${version}
|
||||
FROM ${image}
|
||||
|
||||
# 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
|
|
@ -0,0 +1,14 @@
|
|||
ARG version=17
|
||||
ARG image=odoo:${version}
|
||||
FROM ${image}
|
||||
|
||||
# Install testing requirements
|
||||
USER root
|
||||
RUN curl -o google-chrome-stable_current_amd64.deb -sSL https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
|
||||
apt-get update && \
|
||||
DEBIAN_FRONTEND=noninteractive \
|
||||
apt-get install -y --no-install-recommends \
|
||||
./google-chrome-stable_current_amd64.deb \
|
||||
python3-websocket \
|
||||
&& rm -rf /var/lib/apt/lists/* ./google-chrome-stable_current_amd64.deb
|
||||
USER odoo
|
|
@ -0,0 +1,14 @@
|
|||
ARG version=18
|
||||
ARG image=odoo:${version}
|
||||
FROM ${image}
|
||||
|
||||
# Install testing requirements
|
||||
USER root
|
||||
RUN curl -o google-chrome-stable_current_amd64.deb -sSL https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
|
||||
apt-get update && \
|
||||
DEBIAN_FRONTEND=noninteractive \
|
||||
apt-get install -y --no-install-recommends \
|
||||
./google-chrome-stable_current_amd64.deb \
|
||||
python3-websocket \
|
||||
&& rm -rf /var/lib/apt/lists/* ./google-chrome-stable_current_amd64.deb
|
||||
USER odoo
|
Loading…
Reference in New Issue