dan92 commited on
Commit
5cb186c
·
verified ·
1 Parent(s): d1968b8

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.13-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . /app/
6
+
7
+ RUN pip install --no-cache-dir flask requests && \
8
+ chmod 777 -R /app
9
+
10
+ EXPOSE 8080
11
+
12
+ CMD ["python", "server.py"]