Skip to content

Commit cf9b0de

Browse files
committed
pip not pip3, works then in Py2.x.
1 parent 9657127 commit cf9b0de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ FROM python:3.6
33
ADD . /flasgger
44
WORKDIR /flasgger
55

6-
RUN pip3 install -U --no-cache-dir pip && \
7-
pip3 install --no-cache-dir -r requirements.txt -r requirements-dev.txt && \
8-
pip3 install --no-cache-dir etc/flasgger_package && \
6+
RUN pip install -U --no-cache-dir pip && \
7+
pip install --no-cache-dir -r requirements.txt -r requirements-dev.txt && \
8+
pip install --no-cache-dir etc/flasgger_package && \
99
make test && \
1010
python setup.py sdist bdist_wheel --universal
1111

0 commit comments

Comments
 (0)