paulcalzada commited on
Commit
4e2c5da
·
1 Parent(s): 1495ee1

requirements update 6

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- # Use a base image with Python
2
- FROM python:3.10-slim
3
-
4
- # Install system dependencies required by FAISS
5
- RUN apt-get update && apt-get install -y --no-install-recommends \
6
- build-essential \
7
- cmake \
8
- libopenblas-dev \
9
- libomp-dev \
10
- && rm -rf /var/lib/apt/lists/*
11
-
12
- # Copy the requirements file and install Python packages
13
- COPY requirements.txt .
14
- RUN pip install --no-cache-dir -r requirements.txt
15
-
16
- # Copy the rest of your application code
17
- COPY . .
18
-
19
- # Set the entrypoint for your Gradio app
20
- CMD ["python", "app.py"]