Skip to content

Commit

Permalink
Getting back the multi-line: yay!
Browse files Browse the repository at this point in the history
  • Loading branch information
gerhard committed Sep 30, 2013
1 parent 1edbc01 commit 0eb79f1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile.ubuntu
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
FROM ubuntu:12.04
# MAINTAINER How are you? "docker@howareyou.com"

RUN echo "export HOME=/root" > /.profile; echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90forceyes; echo 'deb http://archive.ubuntu.com/ubuntu precise main universe' > /etc/apt/sources.list; apt-get update; dpkg-divert --local --rename --add /sbin/initctl; ln -s /bin/true /sbin/initctl; apt-get install wget
RUN echo "export HOME=/root" > /.profile;\
echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90forceyes;\
echo 'deb http://archive.ubuntu.com/ubuntu precise main universe' > /etc/apt/sources.list;\
apt-get update;\
dpkg-divert --local --rename --add /sbin/initctl;\
ln -s /bin/true /sbin/initctl;\
apt-get install wget

1 comment on commit 0eb79f1

@arturoherrero
Copy link

Choose a reason for hiding this comment

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

Nice, it's much clearer.

Please sign in to comment.