Neon-tech commited on
Commit
a818b67
·
verified ·
1 Parent(s): 675be9e

Create Dockerfile

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