Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
michaelfeil/infinity
cvllama3hackathon
/
infinity
like
1
Sleeping
App
Files
Files
Community
982ee19
infinity
/
Dockerfile
michaelfeil
add a v1 in docker
7a81ab7
9 months ago
raw
Copy download link
history
blame
Safe
195 Bytes
FROM
python:
3.10
ENV
PIP_ROOT_USER_ACTION=ignore
WORKDIR
/app
COPY
. .
RUN
pip3 install --upgrade pip && \
pip install --no-cache-dir infinity-emb[all]
CMD
[
"sh"
,
"start-infinity-emb.sh"
]