Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rahul2001
/
student_performance
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d780ff1
student_performance
/
dockerfile
rahul2001
"Docker file"
4d7dfa2
almost 2 years ago
raw
Copy download link
history
blame
Safe
157 Bytes
FROM
python:
3.8
-slim-buster
WORKDIR
/app
COPY
. /app
RUN
apt update -y && install awscli -y
RUN
pip install -r requirements.text
CMD
[
"python 3"
,
"app.py"
]