mac9087 commited on
Commit
ca06300
·
verified ·
1 Parent(s): e42a783

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile CHANGED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use Python base image
2
+ FROM python:3.10-slim
3
+
4
+ # Set workdir
5
+ WORKDIR /app
6
+
7
+ # Copy files
8
+ COPY requirements.txt requirements.txt
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
+
11
+ COPY app.py app.py
12
+
13
+ # Expose port
14
+ EXPOSE 7860
15
+
16
+ # Run the app
17
+ CMD ["python", "app.py"]