We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd1d2a commit 7b0b90cCopy full SHA for 7b0b90c
docker/i386/Dockerfile
@@ -2,13 +2,13 @@ FROM i386/ubuntu
2
3
RUN apt-get update && \
4
apt-get -y install \
5
- python3.6 \
6
- python3.6-dev \
7
- python3.6-distutils \
+ python3.7 \
+ python3.7-dev \
+ python3.7-distutils \
8
curl \
9
make && \
10
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
+RUN curl -sSL https://bootstrap.pypa.io/pip/3.7/get-pip.py -o get-pip.py && \
+ python3.7 get-pip.py
13
RUN pip install pytest
14
WORKDIR /app
0 commit comments