Skip to content

Commit c60cb9a

Browse files
committed
return apt-get update to HHVM
1 parent d58ef06 commit c60cb9a

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ server_name laravel.dev;
907907
<a name="Enable-Global-Composer-Build-Install"></a>
908908
### Enable Global Composer Build Install
909909

910-
To enable Running Global Composer Install during the Build:
910+
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.
911911

912912
1 - open the `docker-compose.yml` file
913913

@@ -951,7 +951,7 @@ c - rebuild the Workspace Container `docker-compose build workspace`
951951

952952

953953

954-
954+
<br>
955955
<a name="Install-Node"></a>
956956
### Install Node + NVM
957957

hhvm/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ FROM ubuntu:14.04
22

33
RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0x5a16e7281be7a449
44

5-
RUN apt-get install -y software-properties-common \
5+
RUN apt-get update -y \
6+
&& apt-get install -y software-properties-common \
67
&& add-apt-repository "deb http://dl.hhvm.com/ubuntu $(lsb_release -sc) main" \
78
&& apt-get update -y \
89
&& apt-get install -y hhvm \

0 commit comments

Comments
 (0)