Skip to content

Commit b046e52

Browse files
committed
Fixed multiple calls to get_latest_version
1 parent e3d3d5d commit b046e52

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build_runtime_images.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ jobs:
6565
--build-arg TYPE=${{ matrix.type }} \
6666
--build-arg X_SERVER=${{ matrix.x_server }} \
6767
--build-arg OPENCL_PLATFORM=${{ matrix.opencl }} \
68-
--build-arg VIRTUALGL=${{ matrix.vgl }}
68+
--build-arg VIRTUALGL=${{ matrix.vgl }} \
69+
--build-arg FAST_VERSION=$FAST_VERSION
6970
7071
- name: Cache test data
7172
id: cache-test-dataset

runtime.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ RUN if [ "${TYPE}" = "python" ]; then \
8383
python3 -m venv /environment && \
8484
source /environment/bin/activate && \
8585
pip install requests && \
86-
pip install pyfast==$(python fast_version.py $FAST_VERSION); \
86+
pip install pyfast==$(python fast_version.py $FAST_VERSION) && \
87+
pip cache purge; \
8788
else \
8889
apt install -y python3 python3-pip python3-venv wget libopenslide0 &&\
8990
python3 -m venv /environment && \

0 commit comments

Comments
 (0)