Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
variphx
/
aic-embedding-server
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
41ff374
aic-embedding-server
/
Dockerfile
variphx
fdsafdas
41ff374
6 months ago
raw
Copy download link
history
blame
Safe
136 Bytes
FROM
python:
3.12
-bookworm
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache -r requirements.txt
EXPOSE
50051
CMD
[
"python"
,
"main.py"
]