Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cerkut
/
pycaret_test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e4ace22
pycaret_test
/
Dockerfile
cerkut
Upload 4 files
e4ace22
over 1 year ago
raw
Copy download link
history
blame
Safe
179 Bytes
FROM
python:3.8-slim
WORKDIR /app
ADD
. /app
RUN
apt-
get
update && apt-
get
install -y libgomp1
RUN
pip install -r requirements.txt
EXPOSE 8000
CMD [
"python"
,
"lr_api.py"
]