Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install redis-server>=3.2.4 in docker-database image #46

Merged
merged 4 commits into from
Nov 1, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions dockers/docker-database/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
FROM docker-base

## Pre-install the fundamental packages
## TODO: remove if redis-server 3.2.4 comes into stable sources
COPY backports.list /etc/apt/sources.list.d/

## Install packages
## Clean up
RUN apt-get -y install \
RUN apt-get update && \
apt-get -y -t jessie-backports install \
Copy link
Contributor

@stcheng stcheng Oct 29, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merge the below two lines into one line? #Resolved

redis-server \
&& \
apt-get clean -y && apt-get autoclean -y && apt-get autoremove -y
Expand Down