1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-17 21:22:10 +00:00

ci/Dockerfile: set PIPENV_CACHE_DIR

This commit is contained in:
Pavol Rusnak 2020-06-01 23:39:17 +02:00
parent 83d3acb0a6
commit ae2d5813f0
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -118,8 +118,6 @@ ENV PYTHON=python3
# use zipfile module to extract files world-readable
RUN ${PYTHON} -m zipfile -e "protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" /usr/local && chmod 755 /usr/local/bin/protoc
ENV WORKON_HOME=/tmp/.venvs
# download monero tests binary
ENV TREZOR_MONERO_TESTS_SHA256SUM=5b35342c79eb91265f5f427224016a52994fff32c8ea078de5d502b37d3022d6
@ -134,6 +132,9 @@ RUN if [ "${FULLDEPS_TESTING}" = "1" ]; then \
# install python dependencies
ENV WORKON_HOME=/tmp/.venvs
ENV PIPENV_CACHE_DIR=/tmp/.pipenv-cache
RUN ${PYTHON} -m pip install pipenv
RUN ${PYTHON} --version