Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asv7j
/
images
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cba8256
images
/
DockerFile
asv7j
Update DockerFile
cba8256
verified
8 months ago
raw
Copy download link
history
blame
Safe
190 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
. .
RUN
lscpu
CMD
[
"python3"
,
"app.py"
]