Skip to content

Commit 65b7639

Browse files
authored
Install gcc-10 (#5450)
1 parent 55249ed commit 65b7639

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

infra/ansible/e2e_tests.Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ ARG debian_version=buster
33

44
FROM python:${python_version}-${debian_version} AS build
55

6+
RUN echo 'deb http://deb.debian.org/debian bullseye main' >> /etc/apt/sources.list
7+
RUN apt-get update
8+
RUN apt-get install -y gcc-10
9+
610
WORKDIR /ansible
711
RUN pip install ansible
812
COPY . /ansible
@@ -35,4 +39,4 @@ RUN pip install *.whl
3539
WORKDIR /
3640

3741
# Clean-up unused directories.
38-
RUN rm -rf /ansible /tmp/wheels
42+
RUN rm -rf /ansible /tmp/wheels

0 commit comments

Comments
 (0)