Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dhmeltzer
/
semantic
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d40f2bc
semantic
/
Dockerfile
david-meltzer
initial commit
d40f2bc
over 2 years ago
raw
Copy download link
history
blame
207 Bytes
FROM
python:
3.9
-slim-buster
COPY
. /app
WORKDIR
/app
RUN
pip install --upgrade pip
RUN
pip install numpy==1.24.3
RUN
pip install -r requirements.txt
EXPOSE
8501
ENTRYPOINT
[
"streamlit"
,
"run"
]
CMD
[
"app.py"
]