Watchhrr commited on
Commit
3d92296
·
verified ·
1 Parent(s): 2d8f00d

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+ RUN apt-get update && apt-get install -y 7zip
3
+ RUN pip install duckdb huggingface_hub
4
+ WORKDIR /app
5
+ COPY . .
6
+ CMD ["python", "app.py"]