https://github.com/getty/officespaces
Deploy local 🤗HuggingFace-like 💻app or 🤖model spaces with 📦Docker for private, scalable ML hosting.
https://github.com/getty/officespaces
Last synced: about 1 year ago
JSON representation
Deploy local 🤗HuggingFace-like 💻app or 🤖model spaces with 📦Docker for private, scalable ML hosting.
- Host: GitHub
- URL: https://github.com/getty/officespaces
- Owner: Getty
- Created: 2024-11-17T00:50:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-22T01:48:27.000Z (about 1 year ago)
- Last Synced: 2025-05-22T02:38:27.692Z (about 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OfficeSpaces
Deploy local HuggingFace-like app or model spaces with Docker for private, scalable ML hosting.
# Commands (so far)
Start environment for development
```bash
docker run -it --rm -v/var/run/docker.sock:/var/run/docker.sock -v$PWD:/app --group-add $(getent group docker | awk -F: '{print $3}') src.ci/srv/python:latest bash
```
Inside the docker
```bash
# install uv installer and build system
pip install build uv
# install requirements
pip install .[dev]
# build package
python -m build --installer=uv
```