Skip to content

Commit

Permalink
Flattened RUN statements into a single one.
Browse files Browse the repository at this point in the history
  • Loading branch information
pilwon committed May 11, 2014
1 parent bebd26b commit f2adb0d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
# Pull base image.
FROM ubuntu:14.04

# Update OS.
RUN sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list
RUN apt-get update
RUN apt-get -y upgrade

# Install basic packages.
RUN apt-get install -y build-essential software-properties-common
RUN apt-get install -y byobu curl git htop unzip vim wget
# Install.
RUN \
sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \
apt-get update && \
apt-get -y upgrade && \
apt-get install -y build-essential && \
apt-get install -y software-properties-common && \
apt-get install -y byobu curl git htop unzip vim wget

# Add files.
ADD root/.bashrc /root/.bashrc
Expand Down

0 comments on commit f2adb0d

Please sign in to comment.