Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
MLSB/pinder_inference_template
MLSB
/
DFMDock
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e8bd09a
DFMDock
/
Dockerfile
Simon Dürr
fix flagged dir
e8bd09a
8 months ago
raw
Copy download link
history
blame
Safe
207 Bytes
FROM
python:
3.8
-slim
WORKDIR
/usr/src/app
RUN
pwd
RUN
ls
RUN
mkdir
/usr/src/app/flagged
COPY
. .
RUN
pip install --no-cache-dir gradio
EXPOSE
7860
ENV
GRADIO_SERVER_NAME=
"0.0.0.0"
CMD
[
"python"
,
"app.py"
]