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:
Duplicated from
pknez/face-swap-docker
ko2009
/
docker
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
docker
/
Dockerfile
pknez
Upload 913 files
0c87db7
almost 3 years ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
205 Bytes
FROM
python:3.11
WORKDIR /usr/src/app
RUN
apt-
get
update && apt-
get
install -y libgl1-mesa-glx
COPY requirements.txt ./
RUN
pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [
"python"
,
"run.py"
]