We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77f9183 commit c3ff9e4Copy full SHA for c3ff9e4
1 file changed
workspace/Dockerfile
@@ -31,7 +31,10 @@ RUN apt-get update \
31
git \
32
curl \
33
vim \
34
- nano
+ nano \
35
+ nodejs \
36
+ nodejs-dev \
37
+ npm
38
39
# Install Composer
40
RUN curl -s http://getcomposer.org/installer | php \
@@ -42,6 +45,12 @@ RUN curl -s http://getcomposer.org/installer | php \
42
45
RUN composer.phar global require "laravel/installer" \
43
46
&& echo "export PATH='~/.composer/vendor/bin:$PATH'" >> ~/.bashrc
44
47
48
+# Install gulp and bower
49
+RUN npm install -g gulp bower
50
+
51
+# Add a symbolic link
52
+RUN ln -s /usr/bin/nodejs /usr/bin/node
53
54
# Add an alias for PHPUnit
55
RUN echo "alias phpunit='./vendor/bin/phpunit'" >> ~/.bashrc
56
0 commit comments