Spaces:
No application file
No application file
File size: 898 Bytes
49deb72 3b61377 94096ed 2bb2f07 fb900c9 ed7e518 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
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"]
---
license: artistic-2.0
title: HubspaceX
sdk: docker
emoji: π
colorFrom: blue
colorTo: gray
pinned: true
---
git clone https://huggingface.co/spaces/FlipFlopsNSocks/HubSpace---
title: HubSpace
emoji: π
colorFrom: yellow
colorTo: purple
sdk: docker
pinned: false
license: mit
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
title: {{title}}
emoji: {{emoji}}
colorFrom: {{colorFrom}}
colorTo: {{colorTo}}
sdk: {{sdk}}
sdk_version: {{sdkVersion}}
app_file: app.py
pinned: false |