Chompi10 commited on
Commit
a918733
·
verified ·
1 Parent(s): d270d9d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -2,12 +2,9 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
- RUN apt-get update && apt-get install -y \
6
- git \
7
- && rm -rf /var/lib/apt/lists/*
8
 
9
  COPY requirements.txt .
10
-
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  COPY app.py .
 
2
 
3
  WORKDIR /app
4
 
5
+ RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
 
 
6
 
7
  COPY requirements.txt .
 
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  COPY app.py .