Neon-tech commited on
Commit
2e0edbc
·
verified ·
1 Parent(s): e57bd3f

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN pip install \
6
+ huggingface_hub \
7
+ tokenizers \
8
+ pandas \
9
+ pyarrow \
10
+ requests
11
+
12
+ COPY app.py .
13
+
14
+ CMD ["python", "app.py"]