KoKoDanio commited on
Commit
a7ce855
·
1 Parent(s): f4e9488

added fixed 4

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -7,11 +7,13 @@ FROM python:3.10-slim
7
  RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
8
  RUN python3 -m pip install --upgrade pip
9
 
 
10
  # Set the working directory in the container
11
  WORKDIR /app
12
 
13
  # Copy the requirements file and install dependencies
14
  COPY requirements.txt .
 
15
  RUN pip install --no-cache-dir --upgrade setuptools wheel packaging
16
  RUN pip install --no-cache-dir -r requirements.txt
17
 
 
7
  RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
8
  RUN python3 -m pip install --upgrade pip
9
 
10
+
11
  # Set the working directory in the container
12
  WORKDIR /app
13
 
14
  # Copy the requirements file and install dependencies
15
  COPY requirements.txt .
16
+ RUN pip install torch==2.3.0
17
  RUN pip install --no-cache-dir --upgrade setuptools wheel packaging
18
  RUN pip install --no-cache-dir -r requirements.txt
19