Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions resources/docker_files/ubuntu-16.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ubuntu-16.04/Dockerfile
#
# Copyright (c) 2018-2021, ARM Limited, All Rights Reserved
# Copyright (c) 2018-2022, ARM Limited, All Rights Reserved
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
Expand Down Expand Up @@ -28,6 +28,10 @@ FROM ubuntu:16.04
ARG DEBIAN_FRONTEND=noninteractive
WORKDIR /opt/src

# Note: scripts/min_requirements.py need a writable
# destination for installing python dependencies
ENV HOME=/var/lib/builds

# Support for i386:
# - for 32-bit builds+tests of Mbed TLS
# - required to install Arm Compiler 5.06 (armcc)
Expand Down Expand Up @@ -117,7 +121,7 @@ RUN wget -q https://developer.arm.com/-/media/Files/downloads/compiler/DS500-PA-

ENV ARMC5_BIN_DIR=/usr/local/ARM_Compiler_5.06u3/bin/
ENV PATH=$PATH:/usr/local/ARM_Compiler_5.06u3/bin
ENV ARMLMD_LICENSE_FILE=[email protected]
ENV ARMLMD_LICENSE_FILE=[email protected]:[email protected]:[email protected]:[email protected]

# Install ARM Compiler 6.6
RUN mkdir temp && cd temp && \
Expand Down Expand Up @@ -254,12 +258,6 @@ RUN git clone --branch 1.1 https://github.com/lvc/abi-dumper.git && \
RUN python3 -m pip install 'pip<21' --upgrade | cat && \
python3 -m pip config set global.progress_bar off && \
python3 -m pip install setuptools --upgrade && \
# For pylint we want a known version, as later versions may add checks at
# any time, making CI results unpredictable.
python3 -m pip install pylint==2.4.4 && \
# For mypy, use the earliest version that works with our code base.
# See https://github.com/ARMmbed/mbedtls/pull/3953 .
python3 -m pip install mypy==0.780 && \
true

# Set locale for ARMCC to work
Expand Down
Loading