Collapsed a few layers in the Dockerfile

This commit is contained in:
Matt Hill
2016-03-01 13:36:32 -05:00
parent 6f9b09d8e8
commit 4e8855833d

View File

@@ -21,13 +21,9 @@ run mkdir /srv/openalpr/src/build
workdir /srv/openalpr/src/build
# Setup the compile environment
run cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_SYSCONFDIR:PATH=/etc ..
# Compile the library
run make
# Install the binaries/libraries to your local system (prefix is /usr)
run make install
run cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_SYSCONFDIR:PATH=/etc .. && \
make -j2 && \
make install
workdir /data