blob: 99077978fc395d4c5d6509da9cb8d2dc40a543e6 [file] [log] [blame]
garciadeblas3099aef2025-10-01 10:56:51 +02001#######################################################################################
2# Copyright ETSI Contributors and Others.
3#
tierno87858ca2018-10-08 16:30:15 +02004# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
garciadeblas3099aef2025-10-01 10:56:51 +020016#######################################################################################
17FROM 31z4/tox
tierno096d9ed2018-11-01 17:41:18 +010018
garciadeblas3099aef2025-10-01 10:56:51 +020019USER root
beierlmb0291ff2022-01-13 11:37:31 -050020
garciadeblas3099aef2025-10-01 10:56:51 +020021RUN set -eux; \
22 apt-get update; \
23 apt-get install -y --no-install-recommends patch wget libmagic-dev; \
24 rm -rf /var/lib/apt/lists/*
Mike Marchetti26009a12018-04-25 14:57:09 -040025
garciadeblas3099aef2025-10-01 10:56:51 +020026COPY entrypoint.sh /entrypoint.sh
27RUN chmod +x /entrypoint.sh
garciadeblas2644b762021-03-24 09:21:01 +010028
garciadeblas3099aef2025-10-01 10:56:51 +020029ENTRYPOINT ["/entrypoint.sh"]
30CMD ["devops-stages/stage-test.sh"]