File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 77RUN mkdir -p /CDT
88COPY . /CDT
99RUN cd /CDT && \
10+ add-apt-repository ppa:deadsnakes/ppa -y && \
1011 apt-get update --allow-unauthenticated && \
1112 apt-get -q install "python${python}" "python${python}-dev" python3-pip python3-setuptools -y && \
1213 rm /usr/bin/python3 && ln -s /usr/bin/python${python} /usr/bin/python3 && \
Original file line number Diff line number Diff line change @@ -5,11 +5,6 @@ ARG python
55
66RUN mkdir -p /CDT
77COPY . /CDT
8- RUN cd /CDT && \
9- apt-get update --allow-unauthenticated && \
10- apt-get -q install "python3.6" "python3.6-dev" -y
11- RUN apt-get -q install python3-pip python3-setuptools -y && \
12- rm /usr/bin/python3 && ln -s /usr/bin/python3.6 /usr/bin/python3
138RUN cd /CDT && \
149 python3 -m pip install -r requirements.txt && \
1510 python3 -m pip install pytest pytest-cov && \
You can’t perform that action at this time.
0 commit comments