Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Add yarn
  • Loading branch information
lecler-i authored Mar 21, 2017
1 parent deac570 commit 8271ef2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ FROM node:latest
# Add a user and a group called meteor
RUN groupadd meteor && adduser --ingroup meteor --disabled-password --gecos "" --home /home/meteor meteor

RUN npm install -g yarn

This comment has been minimized.

Copy link
@aslafy-z

aslafy-z Mar 21, 2017

C'est déconseillé d'installer yarn comme ça, il est d'ailleur déjà installé dans les images officielles "node" : docker-library/official-images#2705 ;)

This comment has been minimized.

Copy link
@lecler-i

lecler-i via email Mar 21, 2017

Author Owner

This comment has been minimized.

Copy link
@aslafy-z

aslafy-z Mar 21, 2017

T'as vu :D


# Installing meteor
USER meteor
RUN curl https://install.meteor.com/ | sh
Expand Down

0 comments on commit 8271ef2

Please sign in to comment.