Skip to content
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