This repository was archived by the owner on Oct 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -387,13 +387,16 @@ FROM ubuntu:18.04 as dev-extras
387
387
388
388
RUN apt update &&\
389
389
apt install -y \
390
+ build-essential \
390
391
curl \
391
392
git \
392
393
inotify-tools \
393
394
iproute2 \
394
395
jq \
395
396
net-tools \
396
- python3-pip \
397
+ python3.8 \
398
+ python3.8-dev \
399
+ python3.8-distutils \
397
400
socat \
398
401
sudo \
399
402
vim \
@@ -410,15 +413,22 @@ ENV SIGNALFX_BUNDLE_DIR=/bundle \
410
413
LC_ALL=C.UTF-8 \
411
414
LANG=C.UTF-8
412
415
416
+ RUN rm -f /usr/bin/python3 && \
417
+ ln -s /usr/bin/python3.8 /usr/bin/python && \
418
+ ln -s /usr/bin/python3.8 /usr/bin/python3
419
+
420
+ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
421
+ python get-pip.py pip==20.0.2 && \
422
+ rm get-pip.py
423
+
413
424
RUN curl -fsSL get.docker.com -o /tmp/get-docker.sh &&\
414
425
sh /tmp/get-docker.sh
415
426
416
427
# Get integration test deps in here
417
428
RUN pip3 install ipython ipdb
418
429
COPY tests/requirements.txt /tmp/
419
- RUN pip3 install --upgrade pip==9.0.1 && pip3 install -r /tmp/requirements.txt
420
- RUN ln -s /usr/bin/python3 /usr/bin/python &&\
421
- ln -s /usr/bin/pip3 /usr/bin/pip
430
+ RUN pip3 install -r /tmp/requirements.txt
431
+ RUN ln -s /usr/bin/pip3 /usr/bin/pip
422
432
423
433
ARG TARGET_ARCH
424
434
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ psutil==5.6.6
10
10
pylint == 2.3.0
11
11
pytest-html == 1.22
12
12
pytest-rerunfailures == 4.1
13
- pytest-xdist == 1.30 .0
13
+ pytest-xdist == 1.31 .0
14
14
pytest == 5.3.1
15
15
redis == 2.10.6
16
16
requests == 2.22.0
You can’t perform that action at this time.
0 commit comments