Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Utkarsh64
/
GAN_Project
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f5e05d4
GAN_Project
/
Dockerfile
Utkarsh64
Create Dockerfile
f5e05d4
verified
4 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
176 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r backend/requirements.txt
EXPOSE
7860
CMD
[
"gunicorn"
,
"-b"
,
"0.0.0.0:7860"
,
"backend.app2:app"
]