Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Forrest99
/
codesearchBase
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8f67f6c
codesearchBase
/
Dockerfile
Forrest99
Create Dockerfile
7f7b229
verified
3 months ago
raw
Copy download link
history
blame
Safe
133 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
5000
CMD
[
"python"
,
"app.py"
]