Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
rr1
/
jdvae
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
jdvae
/
Dockerfile
ykl45
Update Dockerfile
385154f
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
194 Bytes
FROM
python:
3.11
RUN
apt update
RUN
apt install git
RUN
git
clone
https://github.com/renqabs/jdvae.git /app
WORKDIR
app
RUN
pip install -r requirements.txt
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]