fjenett commited on
Commit
958b1dd
·
1 Parent(s): bf1e679

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -27,7 +27,6 @@ RUN pip install -r requirements.txt
27
  RUN mkdir examples && \
28
  cd examples && \
29
  for i in `seq 1 12`; do wget "https://raw.githubusercontent.com/memory-overflow/standard-ellipse-detection/master/images/test$i.jpg?raw=true"; done && \
30
- image_files=("13.jpg" "27.jpg" "35.jpg" "43.jpg" "666.jpg" "666_negative.jpg" "666_positive.jpg" "different-polarity-detection_all.jpg" "im9933.jpg") && \
31
- for file in "${image_files[@]}"; do wget "https://github.com/AlanLuSun/High-quality-ellipse-detection/blob/master/pics/$file?raw=true"; done
32
 
33
  CMD ["python", "/opt/build/app.py"]
 
27
  RUN mkdir examples && \
28
  cd examples && \
29
  for i in `seq 1 12`; do wget "https://raw.githubusercontent.com/memory-overflow/standard-ellipse-detection/master/images/test$i.jpg?raw=true"; done && \
30
+ for file in 13.jpg 27.jpg 35.jpg 43.jpg 666.jpg 666_negative.jpg 666_positive.jpg different-polarity-detection_all.jpg im9933.jpg; do wget "https://github.com/AlanLuSun/High-quality-ellipse-detection/blob/master/pics/$file?raw=true"; done
 
31
 
32
  CMD ["python", "/opt/build/app.py"]