We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d3ba0 commit 3c06debCopy full SHA for 3c06deb
1 file changed
Dockerfile
@@ -33,12 +33,11 @@ RUN --mount=type=cache,target=/root/.cache/pip \
33
git reset --hard v1.9.4 && \
34
mkdir -p openai && \
35
cd openai && \
36
- git init && \
37
- git remote add origin https://huggingface.co/openai/clip-vit-large-patch14 && \
38
- git fetch origin 32bd64288804d66eefd0ccbe215aa642df71cc41 --depth=1 && \
+ git clone https://huggingface.co/openai/clip-vit-large-patch14 && \
+ cd clip-vit-large-patch14 && \
39
git reset --hard 32bd64288804d66eefd0ccbe215aa642df71cc41 && \
40
rm -rf .git && \
41
- cd .. && \
+ cd ../.. && \
42
pip install -r requirements_versions.txt && \
43
pip install --upgrade "typing_extensions>=4.6.0"
44
0 commit comments