Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
memorease
/
flan5_memorease_docker
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
69f9211
flan5_memorease_docker
/
Dockerfile
memorease
Upload 4 files
abb28f8
verified
4 months ago
raw
Copy download link
history
blame
Safe
185 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py app.py
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]