Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
monra/freegpt-webui
Dodgjskbxhrve
/
Project
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aae4949
Project
/
Dockerfile
monra
Initial commit
aae4949
almost 2 years ago
raw
Copy download link
history
blame
158 Bytes
FROM
python:
3.8
-slim-buster
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip3 install -r requirements.txt
COPY
. .
CMD
[
"python3"
,
"./run.py"
]