parent
f2933c5158
commit
5c78e14679
@ -1,5 +1,5 @@
|
|||||||
FROM debian:bullseye-slim
|
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"]
|
SHELL ["/bin/bash", "-xo", "pipefail", "-c"]
|
||||||
|
|
||||||
|
12
15.0/test.Dockerfile
Normal file
12
15.0/test.Dockerfile
Normal 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
|
Loading…
Reference in New Issue
Block a user