zhimin-z commited on
Commit
d7a9ba5
·
1 Parent(s): 1b416ea
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -9,6 +9,9 @@ RUN apt-get update && apt-get install -y \
9
  g++ \
10
  && rm -rf /var/lib/apt/lists/*
11
 
 
 
 
12
  # Install Python dependencies
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
 
9
  g++ \
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
+ # Copy requirements file
13
+ COPY requirements.txt .
14
+
15
  # Install Python dependencies
16
  RUN pip install --no-cache-dir -r requirements.txt
17