Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
AWeirdDev
/
g4f
like
0
Sleeping
App
Files
Files
Community
main
g4f
/
Dockerfile
AWeirdDev
init
fb489a5
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
184 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"python"
,
"main.py"
]