Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ALVHB95
/
test_alv_1
like
0
Runtime error
App
Files
Files
Community
3843a78
test_alv_1
/
Dockerfile.txt
ALVHB95
app1
61daa45
9 months ago
raw
Copy download link
history
blame
Safe
225 Bytes
FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]