sanjay7178 commited on
Commit
0fc9769
·
verified ·
1 Parent(s): b32db1c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -5
Dockerfile CHANGED
@@ -17,13 +17,9 @@ RUN apt-get update && apt-get install -y \
17
 
18
 
19
 
20
- ENV VIRTUAL_ENV=/home/packages/.venv
21
- ADD https://astral.sh/uv/install.sh /install.sh
22
- RUN chmod -R 655 /install.sh && /install.sh && rm /install.sh
23
 
24
  COPY ./requirements.txt .
25
- RUN /root/.cargo/bin/uv venv /home/packages/.venv
26
- RUN /root/.cargo/bin/uv pip install --no-cache -r requirements.txt
27
 
28
  # Set the working directory
29
  WORKDIR /app
 
17
 
18
 
19
 
 
 
 
20
 
21
  COPY ./requirements.txt .
22
+ RUN pip install --no-cache -r requirements.txt
 
23
 
24
  # Set the working directory
25
  WORKDIR /app