We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b6f514 commit 7ceb628Copy full SHA for 7ceb628
Dockerfile.ci
@@ -134,10 +134,12 @@ RUN mkdir -p /opt/protoc && \
134
#
135
# Ecosystem FVP License permits redistribution (refer to the relevant license available in the container).
136
RUN set -o pipefail && \
137
- apt update && \
138
- apt install software-properties-common && \
139
add-apt-repository -y ppa:deadsnakes/ppa && \
140
- apt install -y python3.9-dev && \
+ apt-get update && \
+ apt-get install --no-install-recommends -y \
+ software-properties-common \
141
+ python3.9-dev && \
142
+ rm -rf /var/lib/apt/lists/* && \
143
mkdir -p /opt/fvps && \
144
cd /opt/fvps && \
145
if [ "${HOSTTYPE}" = "x86_64" ]; then SUFFIX=""; else SUFFIX="_armv8l"; fi && \
0 commit comments