Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
KingNish/Private-Google
Nymbo
/
Private-Google
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abf5754
Private-Google
/
Dockerfile
KingNish
Create Dockerfile
8f2dd03
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
117 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. /app
RUN
pip install Flask eel requests
EXPOSE
8080
CMD
[
"python"
,
"app.py"
]