Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wulitou
/
notdiamond2api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b006049
notdiamond2api
/
Dockerfile
smgc
Create Dockerfile
b006049
verified
3 months ago
raw
Copy download link
history
blame
Safe
189 Bytes
FROM
python:3.9-slim
WORKDIR /app
RUN
pip install --no-cache-dir flask flask-cors requests tiktoken cachetools apscheduler
COPY . .
EXPOSE 3000
CMD flask
run
--host
=0.0.0.0
--port
=3000