Skip to content

Commit

Permalink
Remove OpenAlpr (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli authored May 31, 2019
1 parent 09f4eae commit fbec86a
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -132,37 +132,6 @@ RUN apk add --no-cache \
&& apk del .build-dependencies \
&& rm -rf /usr/src/opencv

# OpenALPR & Log4Cplus
ARG LOGCPLUS_VERSION=REL_1_2_0
ARG OPENALPR_VERSION=v2.3.0
RUN apk add --no-cache \
tesseract-ocr \
&& apk add --no-cache --virtual .build-dependencies \
build-base\
cmake \
ncurses \
tesseract-ocr-dev \
autoconf \
automake \
libtool \
&& git clone --depth 1 -b ${LOGCPLUS_VERSION} https://github.com/log4cplus/log4cplus \
&& cd log4cplus \
&& autoreconf -f -i \
&& ./configure --with-working-locale \
&& make -j$(nproc) \
&& make install \
&& cd /usr/src \
&& rm -rf /usr/src/log4cplus \
&& git clone --depth 1 -b ${OPENALPR_VERSION} https://github.com/openalpr/openalpr \
&& cd openalpr/src \
&& mkdir -p build \
&& cd build \
&& cmake ../ -DWITH_TESTS=FALSE -DWITH_BINDING_JAVA=FALSE -DWITH_BINDING_PYTHON=FALSE -DWITH_BINDING_GO=FALSE -DWITH_DAEMON=FALSE -DCMAKE_INSTALL_PREFIX:PATH=/usr/local \
&& make -j$(nproc) \
&& make install \
&& apk del .build-dependencies \
&& rm -rf /usr/src/openalpr

# Telldus
RUN apk add --no-cache \
confuse \
Expand Down

2 comments on commit fbec86a

@thundergreen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stupid question but Why was OPENALPR removed? I would love running this with Hassio

@frenck
Copy link
Member

@frenck frenck commented on fbec86a Oct 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don’t respond on old commits. Instead use the appropriate channels. For example, our Discord chat or Community forum when in need for support. Thanks, @thundergreen

Please sign in to comment.