lllindsey0615 commited on
Commit
c800eaa
·
1 Parent(s): cb6aae7

Fixed Dockerfile to properly copy requirements.txt

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y \
15
  RUN pip install --upgrade pip
16
 
17
  # Copy and install Python dependencies first (before cloning anticipation)
18
- COPY requirements.txt .
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
  # Clone and install Anticipation Music Transformer (AMT)
 
15
  RUN pip install --upgrade pip
16
 
17
  # Copy and install Python dependencies first (before cloning anticipation)
18
+ COPY requirements.txt /app/requirements.txt
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
  # Clone and install Anticipation Music Transformer (AMT)