Skip to content

Commit

Permalink
Merge pull request #619 from artpdr/update_Dockerfile
Browse files Browse the repository at this point in the history
Update Dockerfile to install software-properties-common instead of python-software-properties.
  • Loading branch information
ipapapa authored Nov 28, 2018
2 parents 1ac8627 + 68b12a0 commit 94f8e11
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,18 @@ FROM ubuntu
MAINTAINER Ioannis Papapanagiotou - [email protected]

# Update the repository sources list and Install package Build Essential
RUN apt-get update && apt-get install -y \
RUN apt-get update && \
export DEBIAN_FRONTEND=noninteractive && \
apt-get install -y \
autoconf \
build-essential \
dh-autoreconf \
git \
libssl-dev \
libtool \
python-software-properties \
software-properties-common \
redis-server \
tcl8.5
tcl8.5

# Clone the Dynomite Git
RUN git clone https://github.com/Netflix/dynomite.git
Expand Down

0 comments on commit 94f8e11

Please sign in to comment.