Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
paloliska
/
trykopy
like
0
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
main
trykopy
/
Dockerfile
Pavol Liška
v1
869eb7d
almost 2 years ago
raw
Copy download link
history
blame
Safe
223 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"api:api"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]