Skip to content

Commit

Permalink
Version bump after release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasff committed Feb 23, 2020
1 parent 0651736 commit bb64f3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM alpine:3.11.3 AS stage
MAINTAINER Nicolas Favre-Felix <[email protected]>

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.8.tar.gz -O webdis-0.1.8.tar.gz
RUN tar -xvzf webdis-0.1.8.tar.gz
RUN cd webdis-0.1.8 && make && make install && cd ..
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 sed -i -e 's/"daemonize":.*true,/"daemonize": false,/g' /etc/webdis.prod.json

# main image
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define VERSION_H

#ifndef WEBDIS_VERSION
#define WEBDIS_VERSION "0.1.9"
#define WEBDIS_VERSION "0.1.10-dev"
#endif

#endif /* VERSION_H */

0 comments on commit bb64f3b

Please sign in to comment.