Neon-tech commited on
Commit
286b5fc
·
verified ·
1 Parent(s): 895dbb3

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+
4
+ WORKDIR /app
5
+
6
+ #RUN pip install httpx pandas
7
+ COPY . .
8
+
9
+ CMD ["python", "app.py"]