Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NBayer
/
docker-test
like
0
Runtime error
App
Files
Files
Community
2c76bb3
docker-test
/
Dockerfile
NBayer
Create Dockerfile
f65a567
almost 2 years ago
raw
Copy download link
history
blame
Safe
119 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. /app
RUN
pip install -r requirements.txt
EXPOSE
3000
CMD
[
"pyhon"
,
"./app.py"
]