Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jaimin
/
GPT
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
GPT
/
Dockerfile.txt
jaimin
Upload 6 files
da0e069
over 3 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
124 Bytes
FROM python:3.9.12-buster
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD [ "streamlit", "run", "app.py" ]