Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FallnAI
/
Text-Generation-Inference-Server
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
94149ee
Text-Generation-Inference-Server
/
Dockerfile
Falln87
Update Dockerfile
94149ee
verified
3 months ago
raw
Copy download link
history
blame
Safe
182 Bytes
FROM
ghcr.io/huggingface/text-generation-inference:latest
COPY
. /app
WORKDIR
/app
EXPOSE
80
CMD
[
"text-generation-inference"
,
"--model-id"
,
"mistralai/Mistral-7B-Instruct-v0.1"
]