Sarathkumar1304ai commited on
Commit
27d8c87
·
verified ·
1 Parent(s): 3d70144

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -5
Dockerfile CHANGED
@@ -1,14 +1,12 @@
1
- # Dockerfile for all services
2
  FROM python:3.12-slim
3
 
4
  WORKDIR /app
5
 
6
  COPY requirements.txt .
7
- RUN pip install -r requirements.txt
8
 
9
  COPY . .
10
 
11
- # Expose port
12
- EXPOSE 8001
13
- EXPOSE 8501
14
 
 
 
1
  FROM python:3.12-slim
2
 
3
  WORKDIR /app
4
 
5
  COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
 
8
  COPY . .
9
 
10
+ ENTRYPOINT ["bash"]
11
+
 
12