remove --no-use-pep51 flag

This commit is contained in:
johnwesley 2019-06-04 21:07:52 -04:00
parent 75300cd936
commit f64d1c250f

View file

@ -18,7 +18,7 @@ WORKDIR /algo
COPY requirements.txt .
RUN apk --no-cache add ${BUILD_PACKAGES} && \
python -m pip --no-cache-dir install -U pip && \
python -m pip --no-cache-dir install -r requirements.txt --no-use-pep51 && \
python -m pip --no-cache-dir install -r requirements.txt && \
apk del ${BUILD_PACKAGES}
COPY . .
RUN chmod 0755 /algo/algo-docker.sh