-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rollback apt update and added force to symlink creation. Kudos to ala…
…n.bennett for helping on that.
- Loading branch information
1 parent
bcb374d
commit 9b68fcb
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,11 @@ FROM ubuntu:latest | |
MAINTAINER Ricardo Amaro <[email protected]> | ||
|
||
#RUN echo "deb http://archive.ubuntu.com/ubuntu saucy main restricted universe multiverse" > /etc/apt/sources.list | ||
#RUN apt-get update | ||
RUN apt-get update | ||
#RUN apt-get -y upgrade | ||
|
||
RUN dpkg-divert --local --rename --add /sbin/initctl | ||
RUN ln -s /bin/true /sbin/initctl | ||
RUN ln -sf /bin/true /sbin/initctl | ||
|
||
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install git mysql-client mysql-server apache2 libapache2-mod-php5 pwgen python-setuptools vim-tiny php5-mysql php-apc php5-gd php5-curl php5-memcache memcached drush mc | ||
|
||
|