Hannes Kuchelmeister
commited on
Commit
·
a76ccef
1
Parent(s):
d76eb8a
fix missing / when copying multiple files
Browse files
annotation-preprocessing/Dockerfile
CHANGED
@@ -8,6 +8,6 @@ RUN apt-get install libgl1 -y
|
|
8 |
COPY requirements.txt ./
|
9 |
RUN pip install --no-cache-dir -r requirements.txt
|
10 |
|
11 |
-
COPY *.py
|
12 |
|
13 |
CMD sh -c "python 0_fetch_from_database.py && python 1_splitting_into_patches.py"
|
|
|
8 |
COPY requirements.txt ./
|
9 |
RUN pip install --no-cache-dir -r requirements.txt
|
10 |
|
11 |
+
COPY *.py ./
|
12 |
|
13 |
CMD sh -c "python 0_fetch_from_database.py && python 1_splitting_into_patches.py"
|