Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jbraha
/
aiproject
like
0
Runtime error
App
Files
Files
Community
e88d04f
aiproject
/
Dockerfile
jbraha
'mint autosave'
f936c34
almost 2 years ago
raw
Copy download link
history
blame
Safe
148 Bytes
FROM
python:
3.8
.
9
WORKDIR
/app
# Install pip requirements
COPY
requirements.txt .
RUN
python -m pip install -r requirements.txt
COPY
. /app
#CMD