Skip to content

Commit f0aec4a

Browse files
committed
Relaxing the right constraint
1 parent fccb25a commit f0aec4a

4 files changed

Lines changed: 7 additions & 7 deletions

docker_build_dependency_image.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -e
3030
export LOCAL_IMAGE_NAME=maxdiffusion_base_image
3131

3232
# Use Docker BuildKit so we can cache pip packages.
33-
export DOCKER_BUILDKIT=1
33+
#export DOCKER_BUILDKIT=1
3434

3535
echo "Starting to build your docker image. This will take a few minutes but the image can be reused as you iterate."
3636

@@ -88,4 +88,4 @@ else
8888
-t ${LOCAL_IMAGE_NAME} \
8989
-f maxdiffusion_dependencies.Dockerfile .
9090
fi
91-
fi
91+
fi

maxdiffusion_dependencies.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ COPY . .
5252

5353
RUN echo "Running command: bash setup.sh MODE=$ENV_MODE JAX_VERSION=$ENV_JAX_VERSION"
5454

55-
RUN --mount=type=cache,target=/root/.cache/pip bash setup.sh MODE=${ENV_MODE} JAX_VERSION=${ENV_JAX_VERSION}
55+
RUN bash setup.sh MODE=${ENV_MODE} JAX_VERSION=${ENV_JAX_VERSION}
5656

5757
# Cleanup
58-
RUN rm -rf /root/.cache/pip
58+
RUN rm -rf /root/.cache/pip

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Pillow
1919
pylint
2020
pyink
2121
pytest==8.2.2
22-
tensorflow==2.17.0
22+
tensorflow>=2.17.0
2323
tensorflow-datasets>=4.9.6
2424
ruff>=0.1.5,<=0.2
2525
git+https://github.com/mlperf/logging.git
2626
opencv-python-headless==4.10.0.84
27-
orbax-checkpoint>=0.10.3
27+
orbax-checkpoint==0.10.3
2828
tokenizers==0.21.0
2929
huggingface_hub==0.30.2
3030
transformers==4.48.1

requirements_with_jax_stable_stack.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jaxlib>=0.4.30
1414
Jinja2
1515
opencv-python-headless==4.10.0.84
1616
optax>=0.2.3
17-
orbax-checkpoint>=0.10.3
17+
orbax-checkpoint==0.10.3
1818
parameterized
1919
Pillow
2020
pyink

0 commit comments

Comments
 (0)