Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
thejagstudio
/
LibDrive
like
0
Sleeping
App
Files
Files
Community
73b3bc9
LibDrive
/
Dockerfile
thejagstudio
Create Dockerfile
a697878
verified
5 months ago
raw
Copy download link
history
blame
Safe
144 Bytes
FROM
python:
3
WORKDIR
/usr/src/app
COPY
requirements.txt ./
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
31145
CMD
[
"python"
,
"./main.py"
]