diff --git a/Dockerfile b/Dockerfile index b265d96..e1234e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,8 @@ RUN sed -i -e 's/"daemonize":.*true,/"daemonize": false,/g' /etc/webdis.prod.jso # main image FROM alpine:3.14.2 # Required dependencies, with versions fixing known security vulnerabilities -RUN apk update && apk add libevent msgpack-c 'redis>5.1' 'apk-tools>2.12.6-r0' +# RUN apk update && apk add libevent msgpack-c 'redis>5.1' 'apk-tools>2.12.6-r0' +RUN apk update && apk add libevent msgpack-c 'redis>6.2.6' 'apk-tools>2.12.6-r0' COPY --from=stage /usr/local/bin/webdis /usr/local/bin/ COPY --from=stage /etc/webdis.prod.json /etc/webdis.prod.json RUN echo "daemonize yes" >> /etc/redis.conf diff --git a/src/version.h b/src/version.h index 1e95efb..ce212a8 100644 --- a/src/version.h +++ b/src/version.h @@ -2,7 +2,7 @@ #define VERSION_H #ifndef WEBDIS_VERSION -#define WEBDIS_VERSION "0.1.18-dev" +#define WEBDIS_VERSION "0.1.17.1" #endif #endif /* VERSION_H */