From cf9e7c0807290adfa941a0ce996b454f79f04aef 2018-12-01 10:29:59 From: Florian Kinder Date: 2018-12-01 10:29:59 Subject: [PATCH] Fixed typos --- diff --git a/Dockerfile b/Dockerfile index 3c5d495fa453f4486bf0a92f3c998a45b5df8d36..fe839c39a05e0c8f220c5a329617116f011a9047 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,19 +5,20 @@ VOLUME ["/etc/spectrum2/transports", "/var/lib/spectrum2"] ADD . /usr/src/spectrum2 -RUN apk add --no-cache --virtual .build-deps cmake make gcc g++ musl-dev boost-dev glib-dev protobuf-dev mariadb-dev sqlite-dev postgresql-dev pidgin-dev libev-dev qt-dev apr-util-dev automake autoconf libtool git popt-dev curl-dev && \ +RUN apk add --no-cache ca-certificates && \ + apk add --no-cache --virtual .build-deps cmake make gcc g++ musl-dev boost-dev glib-dev protobuf-dev mariadb-dev sqlite-dev postgresql-dev pidgin-dev libev-dev qt-dev apr-util-dev automake autoconf libtool git popt-dev curl-dev openssl && \ cd /usr/src/ && \ wget https://github.com/communi/libcommuni/archive/v3.5.0.tar.gz -O libcommuni-3.5.0.tar.gz && \ tar xfz libcommuni-*.tar.gz && \ - cd libcommuni && \ + cd libcommuni-* && \ ./configure && \ make && \ make install && \ - cd .. && rm -rf libcommuni* && \ + cd .. && rm -rf libcommuni-* && \ git clone git://git.apache.org/logging-log4cxx.git && \ - cd apache-log4cxx-* && \ + cd logging-log4cxx && \ git checkout latest_stable && \ ./autogen.sh && \ ./configure && \