Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
michaelfeil
/
infinity
like
3
Running
App
Files
Files
Community
1
3335977
infinity
/
Dockerfile
michaelfeil
add a v1 in docker
7a81ab7
8 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"
]