Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
FROM node
FROM node:12
MAINTAINER Jan-Erik Revsbech <jer@peytz.dk>


RUN node -v
RUN npm -v

# Install Bower & Grunt
RUN npm install -g bower grunt-cli && \
echo '{ "allow_root": true }' > /root/.bowerrc

# Install Webpack 2
RUN npm install -g webpack
# Install Webpack 3
RUN npm install -g webpack@3

# Install ruby
RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ to install these tools locally.

The container has workdir /var/www/application.

The container contains node v6.4, ruby v1.9 and compass in version 1.0.3
The container contains node v12.10, ruby v2.3 and compass in version 1.0.3

Using with docker-compose
-------------------------
Expand Down