diff --git a/Dockerfile b/Dockerfile index f2f955f..4ae09b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM alpine:3.11.3 AS stage MAINTAINER Nicolas Favre-Felix RUN apk update && apk add wget make gcc libevent-dev msgpack-c-dev musl-dev bsd-compat-headers -RUN wget https://github.com/nicolasff/webdis/archive/0.1.9.tar.gz -O webdis-0.1.9.tar.gz -RUN tar -xvzf webdis-0.1.9.tar.gz -RUN cd webdis-0.1.9 && make && make install && cd .. +RUN wget https://github.com/nicolasff/webdis/archive/0.1.10.tar.gz -O webdis-0.1.10.tar.gz +RUN tar -xvzf webdis-0.1.10.tar.gz +RUN cd webdis-0.1.10 && make && make install && cd .. RUN sed -i -e 's/"daemonize":.*true,/"daemonize": false,/g' /etc/webdis.prod.json # main image diff --git a/src/version.h b/src/version.h index d82a29a..515ac6c 100644 --- a/src/version.h +++ b/src/version.h @@ -2,7 +2,7 @@ #define VERSION_H #ifndef WEBDIS_VERSION -#define WEBDIS_VERSION "0.1.10-dev" +#define WEBDIS_VERSION "0.1.10" #endif #endif /* VERSION_H */