Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mobenta
/
page
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
mobenta
commited on
Apr 17
Commit
0c2e567
·
verified
·
1 Parent(s):
e38ec2c
Create docker
Browse files
Files changed (1)
hide
show
docker
+10
-0
docker
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
FROM python:3.9-slim
2
+
3
+
WORKDIR /app
4
+
5
+
COPY requirements.txt .
6
+
RUN pip install --no-cache-dir -r requirements.txt
7
+
8
+
COPY . .
9
+
10
+
CMD ["python", "app.py"]