🐳 Get started with your docker Space!
Your new space has been created, follow these steps to get started (or read our full documentation )
Start by cloning this repo by using:
git clone https://huggingface.co/spaces/Gladiator/test
Create your Dockerfile file:
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
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", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
Then commit and push:
$git add Dockerfile $git commit -m "Add application file" $git push
(Hint: Create the Dockerfile file right in your browser alternatively)
🤗 Your app should be running on this page after a few moments !
App port
Your Docker Space needs to listen on port 7860
Documentation
Check out the full documentation of docker Spaces here