We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9657127 commit cf9b0deCopy full SHA for cf9b0de
Dockerfile
@@ -3,9 +3,9 @@ FROM python:3.6
3
ADD . /flasgger
4
WORKDIR /flasgger
5
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 && \
+RUN pip install -U --no-cache-dir pip && \
+ pip install --no-cache-dir -r requirements.txt -r requirements-dev.txt && \
+ pip install --no-cache-dir etc/flasgger_package && \
9
make test && \
10
python setup.py sdist bdist_wheel --universal
11
0 commit comments