Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
monra
/
freegpt-webui
like
58
Running
App
Files
Files
Community
4
aae4949
freegpt-webui
/
Dockerfile
monra
Initial commit
aae4949
over 1 year 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"
]