RAM2118 commited on
Commit
06ffc04
·
verified ·
1 Parent(s): 5d29a69

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -8,9 +8,8 @@ RUN apt-get update && apt-get install -y \
8
  git \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
- COPY requirements.txt ./
12
- COPY app.py ./
13
- COPY harmonic_engine.py ./
14
 
15
  RUN pip3 install -r requirements.txt
16
 
 
8
  git \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
+ # Copy ALL files (no need to update Dockerfile when adding new files)
12
+ COPY . .
 
13
 
14
  RUN pip3 install -r requirements.txt
15