blob: c7f5ecedd0483a12870b4f62c671f8f47915b178 [file] [log] [blame]
Andrey Pozolotin49a35452020-08-14 22:14:51 +02001# Copyright 2020-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
abhaye3366572024-09-26 11:19:18 +053015FROM python:3.12.7-alpine
Andrey Pozolotin49a35452020-08-14 22:14:51 +020016
abhaye3366572024-09-26 11:19:18 +053017RUN pip install --no-cache-dir --upgrade pip==24.2 && pip install --no-cache-dir -I tox==4.20.0 && pip --no-cache-dir install -I bandit==1.7.10
Andrey Pozolotin49a35452020-08-14 22:14:51 +020018
19WORKDIR /app
20
21# Label image
22ARG org_label_schema_version=unknown
23ARG org_label_schema_vcs_url=unknown
24ARG org_label_schema_vcs_ref=unknown
25ARG org_label_schema_build_date=unknown
26ARG org_opencord_vcs_commit_date=unknown
27ARG org_opencord_vcs_dirty=unknown
28
29LABEL org.label-schema.schema-version=1.0 \
30 org.label-schema.name=voltha-pythonci-lint \
31 org.label-schema.version=$org_label_schema_version \
32 org.label-schema.vcs-url=$org_label_schema_vcs_url \
33 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
34 org.label-schema.build-date=$org_label_schema_build_date \
35 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
36 org.opencord.vcs-dirty=$org_opencord_vcs_dirty \
37 org.opencord.python-version=3.8.5