This commit is contained in:
Adam Heinz 2024-09-17 17:27:18 -04:00 committed by GitHub
commit 0360b8cf9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 1 deletions

View File

@ -1,5 +1,5 @@
FROM debian:bullseye-slim
MAINTAINER Odoo S.A. <info@odoo.com>
LABEL maintainer="Odoo S.A. <info@odoo.com>"
SHELL ["/bin/bash", "-xo", "pipefail", "-c"]

12
15.0/test.Dockerfile Normal file
View File

@ -0,0 +1,12 @@
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