| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | # Copyright ETSI Contributors and Others. |
| 3 | # |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 4 | # 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. |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 16 | ####################################################################################### |
| 17 | FROM 31z4/tox |
| tierno | 096d9ed | 2018-11-01 17:41:18 +0100 | [diff] [blame] | 18 | |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 19 | USER root |
| beierlm | b0291ff | 2022-01-13 11:37:31 -0500 | [diff] [blame] | 20 | |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 21 | RUN 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 Marchetti | 26009a1 | 2018-04-25 14:57:09 -0400 | [diff] [blame] | 25 | |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 26 | COPY entrypoint.sh /entrypoint.sh |
| 27 | RUN chmod +x /entrypoint.sh |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 28 | |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 29 | ENTRYPOINT ["/entrypoint.sh"] |
| 30 | CMD ["devops-stages/stage-test.sh"] |