Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
akkshay
/
Hello
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Hello
/
Dockerfile
akkshay
Update Dockerfile
e594eaf
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
201 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
. .
CMD
[
"echo"
,
"Hello World! This is Akshay"
]