project-sign-language/Sign_language
0
1---2title: Sign Language3emoji: ⚡4colorFrom: gray5colorTo: pink6sdk: docker7pinned: false8license: mit9---10 11# Sign Language Application12 13## Hugging Face Spaces Repository14 15This Sign Language recognition application is deployed on Hugging Face Spaces using Docker:16 17- **Hugging Face Spaces Repository**: [project-sign-language/Sign_language](https://huggingface.co/spaces/project-sign-language/Sign_language)18 19## GitHub Repository20 21The source code for this application is also available on GitHub:22 23- **GitHub Repository**: [ShaymaEssghaier/Sign_language](https://github.com/ShaymaEssghaier/Sign_language)24 25## Docker Repository26 27The Docker image used to deploy this application is also available on Docker Hub:28 29- **Docker Repository**: [remifigea/sign_language](https://hub.docker.com/r/remifigea/sign_language)30 31## Dockerfiles32 33### Dockerfile34 35Use this Dockerfile to run the application in local development mode.36 37To build and run the image locally:38```bash39docker build -f Dockerfile -t my-app:local .40docker run -p 5000:5000 my-app:local41```42 43### Dockerfile.production44 45Use this Dockerfile to run the application in production mode. This is the one used on the Hugging Face Hub repository after renaming it to Dockerfile.46 47 48 49 