Skip to content

Commit 7b0b90c

Browse files
committed
perform 32bit test using Python 3.7
1 parent ecd1d2a commit 7b0b90c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docker/i386/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ FROM i386/ubuntu
22

33
RUN apt-get update && \
44
apt-get -y install \
5-
python3.6 \
6-
python3.6-dev \
7-
python3.6-distutils \
5+
python3.7 \
6+
python3.7-dev \
7+
python3.7-distutils \
88
curl \
99
make && \
1010
rm -rf /var/lib/apt/lists/*
11-
RUN curl -sSL https://bootstrap.pypa.io/pip/3.6/get-pip.py -o get-pip.py && \
12-
python3.6 get-pip.py
11+
RUN curl -sSL https://bootstrap.pypa.io/pip/3.7/get-pip.py -o get-pip.py && \
12+
python3.7 get-pip.py
1313
RUN pip install pytest
1414
WORKDIR /app

0 commit comments

Comments
 (0)