Commit c60cb9ab authored by Mahmoud Zalt's avatar Mahmoud Zalt

return `apt-get update` to HHVM

parent d58ef069
...@@ -907,7 +907,7 @@ server_name laravel.dev; ...@@ -907,7 +907,7 @@ server_name laravel.dev;
<a name="Enable-Global-Composer-Build-Install"></a> <a name="Enable-Global-Composer-Build-Install"></a>
### Enable Global Composer Build Install ### Enable Global Composer Build Install
To enable Running Global Composer Install during the Build: Enabling Global Composer Install during the build for the container allows you to get your composer requirements installed and available in the container after the build is done.
1 - open the `docker-compose.yml` file 1 - open the `docker-compose.yml` file
...@@ -951,7 +951,7 @@ c - rebuild the Workspace Container `docker-compose build workspace` ...@@ -951,7 +951,7 @@ c - rebuild the Workspace Container `docker-compose build workspace`
<br>
<a name="Install-Node"></a> <a name="Install-Node"></a>
### Install Node + NVM ### Install Node + NVM
......
...@@ -2,7 +2,8 @@ FROM ubuntu:14.04 ...@@ -2,7 +2,8 @@ FROM ubuntu:14.04
RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0x5a16e7281be7a449 RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0x5a16e7281be7a449
RUN apt-get install -y software-properties-common \ RUN apt-get update -y \
&& apt-get install -y software-properties-common \
&& add-apt-repository "deb http://dl.hhvm.com/ubuntu $(lsb_release -sc) main" \ && add-apt-repository "deb http://dl.hhvm.com/ubuntu $(lsb_release -sc) main" \
&& apt-get update -y \ && apt-get update -y \
&& apt-get install -y hhvm \ && apt-get install -y hhvm \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment