Skip to content

Commit

Permalink
Update readme and dockerfile for correct node12 repos
Browse files Browse the repository at this point in the history
  • Loading branch information
paul committed Apr 24, 2020
1 parent 1a5a74a commit 6120f97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y gnupg2 \

RUN curl -sS https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& echo 'deb http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list \
&& apt-get -y update && apt-get -y install google-chrome-stable php-cli php-mysql php-mbstring php-xml mysql-client apt-transport-https \
&& apt-get -y update && apt-get -y install google-chrome-stable php-cli php-mysql php-mbstring php-xml default-mysql-client apt-transport-https \
&& rm -rf /etc/apt/sources.list.d/* \
&& apt-get clean

Expand All @@ -38,7 +38,7 @@ RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
&& php -r "unlink('composer-setup.php');" \
&& mv composer.phar /usr/local/bin/composer

RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
&& apt-get install -y nodejs

ENV PATH="/app/node_modules/.bin:/var/www/.npm-global/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# lando-node
A NodeJS container for use with Lando. Based on the bitnami node:10-debian-9 image.
A NodeJS container for use with Lando. Based on the bitnami node:12-debian-10 image.

## Extras

Expand Down

0 comments on commit 6120f97

Please sign in to comment.