-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters