How to install latest node inside a docker container












16















How do I install the latest node inside a docker ubuntu 15.10 container?
apt-get install nodejs installs version 0.1 and no npm



Thanks










share|improve this question

























  • Did you solve it? For me it installs npm v 3.10, can't get 6+

    – simPod
    Dec 23 '16 at 10:55
















16















How do I install the latest node inside a docker ubuntu 15.10 container?
apt-get install nodejs installs version 0.1 and no npm



Thanks










share|improve this question

























  • Did you solve it? For me it installs npm v 3.10, can't get 6+

    – simPod
    Dec 23 '16 at 10:55














16












16








16


3






How do I install the latest node inside a docker ubuntu 15.10 container?
apt-get install nodejs installs version 0.1 and no npm



Thanks










share|improve this question
















How do I install the latest node inside a docker ubuntu 15.10 container?
apt-get install nodejs installs version 0.1 and no npm



Thanks







apt server docker nodejs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 5 '18 at 4:41









saber tabatabaee yazdi

1033




1033










asked Jan 13 '16 at 21:02









TomaszTomasz

423138




423138













  • Did you solve it? For me it installs npm v 3.10, can't get 6+

    – simPod
    Dec 23 '16 at 10:55



















  • Did you solve it? For me it installs npm v 3.10, can't get 6+

    – simPod
    Dec 23 '16 at 10:55

















Did you solve it? For me it installs npm v 3.10, can't get 6+

– simPod
Dec 23 '16 at 10:55





Did you solve it? For me it installs npm v 3.10, can't get 6+

– simPod
Dec 23 '16 at 10:55










6 Answers
6






active

oldest

votes


















24














OK got it,



update apt-get update

install curl apt-get install curl

get install script and pass it to execute: curl -sL https://deb.nodesource.com/setup_4.x | bash

and install node apt-get install nodejs

confirm that it was successful node -v
npm installs automatically npm -v



use curl -sL https://deb.nodesource.com/setup_5.x | bash for node 5.x






share|improve this answer



















  • 6





    I have seen these same instructions all over the web but I cannot get it to install npm. After running the apt-get -y install nodejs, running an npm command does not work. I get /bin/sh: 1: npm: not found

    – Alex White
    Jun 21 '17 at 21:22











  • I have the same problem.

    – And Finally
    Sep 4 '17 at 12:23











  • What if I want to have the exact version as 8.9.4? The above command fails.

    – Sourav Prem
    Apr 13 '18 at 12:41






  • 1





    See this. In the README section it explains how to get different version. Also, 4 is being end-of-lifed, so don't use the above command exactly.

    – Nathaniel Ford
    Apr 26 '18 at 23:08











  • /bin/sh: apt-get: command not found /bin/sh: apk: command not found using FROM amazonlinux:1

    – OZZIE
    Feb 18 at 13:46





















7














This is how I have been installing nodeJS into a container. In my case, I am using an nginx base image.



Use the following command



    apt-get update -yq 
&& apt-get install curl gnupg -yq
&& curl -sL https://deb.nodesource.com/setup_8.x | bash
&& apt-get install nodejs -yq


GNUPG is needed by the nodeJS installer. Without it, you will get the following error message;



[91mE: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation





share|improve this answer

































    5














    You can add a single line to your Dockerfile.



    FROM node:8.2


    There is a list of supported tag names here: https://hub.docker.com/_/node/






    share|improve this answer



















    • 19





      This answer doesn't help anyone using a different base image.

      – Charles Offenbacher
      Jan 13 '18 at 18:45











    • Then they can use Tomasz's answer

      – posit labs
      Jan 13 '18 at 22:54



















    2














    Updated solution as of Jan 2019:



    FROM ubuntu:latest
    USER root
    WORKDIR /home/app
    COPY ./package.json /home/app/package.json
    RUN apt-get update
    RUN apt-get -y install curl gnupg
    RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
    RUN apt-get -y install nodejs
    RUN npm install





    share|improve this answer































      0














      installing nodejs v8 with ubuntu 16.04 base image:



      FROM ubuntu:16.04

      WORKDIR /app

      RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment
      RUN echo "LANG=en_US.UTF-8" >> /etc/environment
      RUN echo "NODE_ENV=development" >> /etc/environment
      RUN more "/etc/environment"
      #RUN locale-gen en_US en_US.UTF-8
      #RUN dpkg-reconfigure locales

      RUN apt-get update
      RUN apt-get upgrade -y
      RUN apt-get dist-upgrade -y
      RUN apt-get install curl htop git zip nano ncdu build-essential chrpath libssl-dev libxft-dev pkg-config glib2.0-dev libexpat1-dev gobject-introspection python-gi-dev apt-transport-https libgirepository1.0-dev libtiff5-dev libjpeg-turbo8-dev libgsf-1-dev fail2ban nginx -y

      # Install Node.js
      RUN curl -sL https://deb.nodesource.com/setup_8.x | bash
      RUN apt-get install --yes nodejs
      RUN node -v
      RUN npm -v
      RUN npm i -g nodemon
      RUN nodemon -v

      # Cleanup
      RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y


      I also installed some extra dependencies I need so you can clean up this code for your needs. But it installs nodejs & npm & nodemon.






      share|improve this answer































        0














        I am using following Dockerfile to setup node version 8.10.0.



        Here I have used NVM (Node Version Manager ), so we can choose which node version should be installed on that container. Please use absolute path of npm when installing node modules (eg: /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g)



           FROM ubuntu:18.04
        ENV NODE_VERSION=8.10.0
        RUN apt-get update &&
        apt-get install wget curl ca-certificates rsync -y
        RUN wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
        ENV NVM_DIR=/root/.nvm
        RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
        RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}
        RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
        RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/node /usr/bin/
        RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm /usr/bin/
        RUN /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g


        Note: This is a cropped Dockerfile.






        share|improve this answer























          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f720784%2fhow-to-install-latest-node-inside-a-docker-container%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          6 Answers
          6






          active

          oldest

          votes








          6 Answers
          6






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          24














          OK got it,



          update apt-get update

          install curl apt-get install curl

          get install script and pass it to execute: curl -sL https://deb.nodesource.com/setup_4.x | bash

          and install node apt-get install nodejs

          confirm that it was successful node -v
          npm installs automatically npm -v



          use curl -sL https://deb.nodesource.com/setup_5.x | bash for node 5.x






          share|improve this answer



















          • 6





            I have seen these same instructions all over the web but I cannot get it to install npm. After running the apt-get -y install nodejs, running an npm command does not work. I get /bin/sh: 1: npm: not found

            – Alex White
            Jun 21 '17 at 21:22











          • I have the same problem.

            – And Finally
            Sep 4 '17 at 12:23











          • What if I want to have the exact version as 8.9.4? The above command fails.

            – Sourav Prem
            Apr 13 '18 at 12:41






          • 1





            See this. In the README section it explains how to get different version. Also, 4 is being end-of-lifed, so don't use the above command exactly.

            – Nathaniel Ford
            Apr 26 '18 at 23:08











          • /bin/sh: apt-get: command not found /bin/sh: apk: command not found using FROM amazonlinux:1

            – OZZIE
            Feb 18 at 13:46


















          24














          OK got it,



          update apt-get update

          install curl apt-get install curl

          get install script and pass it to execute: curl -sL https://deb.nodesource.com/setup_4.x | bash

          and install node apt-get install nodejs

          confirm that it was successful node -v
          npm installs automatically npm -v



          use curl -sL https://deb.nodesource.com/setup_5.x | bash for node 5.x






          share|improve this answer



















          • 6





            I have seen these same instructions all over the web but I cannot get it to install npm. After running the apt-get -y install nodejs, running an npm command does not work. I get /bin/sh: 1: npm: not found

            – Alex White
            Jun 21 '17 at 21:22











          • I have the same problem.

            – And Finally
            Sep 4 '17 at 12:23











          • What if I want to have the exact version as 8.9.4? The above command fails.

            – Sourav Prem
            Apr 13 '18 at 12:41






          • 1





            See this. In the README section it explains how to get different version. Also, 4 is being end-of-lifed, so don't use the above command exactly.

            – Nathaniel Ford
            Apr 26 '18 at 23:08











          • /bin/sh: apt-get: command not found /bin/sh: apk: command not found using FROM amazonlinux:1

            – OZZIE
            Feb 18 at 13:46
















          24












          24








          24







          OK got it,



          update apt-get update

          install curl apt-get install curl

          get install script and pass it to execute: curl -sL https://deb.nodesource.com/setup_4.x | bash

          and install node apt-get install nodejs

          confirm that it was successful node -v
          npm installs automatically npm -v



          use curl -sL https://deb.nodesource.com/setup_5.x | bash for node 5.x






          share|improve this answer













          OK got it,



          update apt-get update

          install curl apt-get install curl

          get install script and pass it to execute: curl -sL https://deb.nodesource.com/setup_4.x | bash

          and install node apt-get install nodejs

          confirm that it was successful node -v
          npm installs automatically npm -v



          use curl -sL https://deb.nodesource.com/setup_5.x | bash for node 5.x







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 13 '16 at 22:54









          TomaszTomasz

          423138




          423138








          • 6





            I have seen these same instructions all over the web but I cannot get it to install npm. After running the apt-get -y install nodejs, running an npm command does not work. I get /bin/sh: 1: npm: not found

            – Alex White
            Jun 21 '17 at 21:22











          • I have the same problem.

            – And Finally
            Sep 4 '17 at 12:23











          • What if I want to have the exact version as 8.9.4? The above command fails.

            – Sourav Prem
            Apr 13 '18 at 12:41






          • 1





            See this. In the README section it explains how to get different version. Also, 4 is being end-of-lifed, so don't use the above command exactly.

            – Nathaniel Ford
            Apr 26 '18 at 23:08











          • /bin/sh: apt-get: command not found /bin/sh: apk: command not found using FROM amazonlinux:1

            – OZZIE
            Feb 18 at 13:46
















          • 6





            I have seen these same instructions all over the web but I cannot get it to install npm. After running the apt-get -y install nodejs, running an npm command does not work. I get /bin/sh: 1: npm: not found

            – Alex White
            Jun 21 '17 at 21:22











          • I have the same problem.

            – And Finally
            Sep 4 '17 at 12:23











          • What if I want to have the exact version as 8.9.4? The above command fails.

            – Sourav Prem
            Apr 13 '18 at 12:41






          • 1





            See this. In the README section it explains how to get different version. Also, 4 is being end-of-lifed, so don't use the above command exactly.

            – Nathaniel Ford
            Apr 26 '18 at 23:08











          • /bin/sh: apt-get: command not found /bin/sh: apk: command not found using FROM amazonlinux:1

            – OZZIE
            Feb 18 at 13:46










          6




          6





          I have seen these same instructions all over the web but I cannot get it to install npm. After running the apt-get -y install nodejs, running an npm command does not work. I get /bin/sh: 1: npm: not found

          – Alex White
          Jun 21 '17 at 21:22





          I have seen these same instructions all over the web but I cannot get it to install npm. After running the apt-get -y install nodejs, running an npm command does not work. I get /bin/sh: 1: npm: not found

          – Alex White
          Jun 21 '17 at 21:22













          I have the same problem.

          – And Finally
          Sep 4 '17 at 12:23





          I have the same problem.

          – And Finally
          Sep 4 '17 at 12:23













          What if I want to have the exact version as 8.9.4? The above command fails.

          – Sourav Prem
          Apr 13 '18 at 12:41





          What if I want to have the exact version as 8.9.4? The above command fails.

          – Sourav Prem
          Apr 13 '18 at 12:41




          1




          1





          See this. In the README section it explains how to get different version. Also, 4 is being end-of-lifed, so don't use the above command exactly.

          – Nathaniel Ford
          Apr 26 '18 at 23:08





          See this. In the README section it explains how to get different version. Also, 4 is being end-of-lifed, so don't use the above command exactly.

          – Nathaniel Ford
          Apr 26 '18 at 23:08













          /bin/sh: apt-get: command not found /bin/sh: apk: command not found using FROM amazonlinux:1

          – OZZIE
          Feb 18 at 13:46







          /bin/sh: apt-get: command not found /bin/sh: apk: command not found using FROM amazonlinux:1

          – OZZIE
          Feb 18 at 13:46















          7














          This is how I have been installing nodeJS into a container. In my case, I am using an nginx base image.



          Use the following command



              apt-get update -yq 
          && apt-get install curl gnupg -yq
          && curl -sL https://deb.nodesource.com/setup_8.x | bash
          && apt-get install nodejs -yq


          GNUPG is needed by the nodeJS installer. Without it, you will get the following error message;



          [91mE: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation





          share|improve this answer






























            7














            This is how I have been installing nodeJS into a container. In my case, I am using an nginx base image.



            Use the following command



                apt-get update -yq 
            && apt-get install curl gnupg -yq
            && curl -sL https://deb.nodesource.com/setup_8.x | bash
            && apt-get install nodejs -yq


            GNUPG is needed by the nodeJS installer. Without it, you will get the following error message;



            [91mE: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation





            share|improve this answer




























              7












              7








              7







              This is how I have been installing nodeJS into a container. In my case, I am using an nginx base image.



              Use the following command



                  apt-get update -yq 
              && apt-get install curl gnupg -yq
              && curl -sL https://deb.nodesource.com/setup_8.x | bash
              && apt-get install nodejs -yq


              GNUPG is needed by the nodeJS installer. Without it, you will get the following error message;



              [91mE: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation





              share|improve this answer















              This is how I have been installing nodeJS into a container. In my case, I am using an nginx base image.



              Use the following command



                  apt-get update -yq 
              && apt-get install curl gnupg -yq
              && curl -sL https://deb.nodesource.com/setup_8.x | bash
              && apt-get install nodejs -yq


              GNUPG is needed by the nodeJS installer. Without it, you will get the following error message;



              [91mE: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation






              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Jun 26 '18 at 22:59









              abu_bua

              3,57681328




              3,57681328










              answered Jun 26 '18 at 20:08









              SageSage

              17112




              17112























                  5














                  You can add a single line to your Dockerfile.



                  FROM node:8.2


                  There is a list of supported tag names here: https://hub.docker.com/_/node/






                  share|improve this answer



















                  • 19





                    This answer doesn't help anyone using a different base image.

                    – Charles Offenbacher
                    Jan 13 '18 at 18:45











                  • Then they can use Tomasz's answer

                    – posit labs
                    Jan 13 '18 at 22:54
















                  5














                  You can add a single line to your Dockerfile.



                  FROM node:8.2


                  There is a list of supported tag names here: https://hub.docker.com/_/node/






                  share|improve this answer



















                  • 19





                    This answer doesn't help anyone using a different base image.

                    – Charles Offenbacher
                    Jan 13 '18 at 18:45











                  • Then they can use Tomasz's answer

                    – posit labs
                    Jan 13 '18 at 22:54














                  5












                  5








                  5







                  You can add a single line to your Dockerfile.



                  FROM node:8.2


                  There is a list of supported tag names here: https://hub.docker.com/_/node/






                  share|improve this answer













                  You can add a single line to your Dockerfile.



                  FROM node:8.2


                  There is a list of supported tag names here: https://hub.docker.com/_/node/







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Aug 3 '17 at 7:01









                  posit labsposit labs

                  15113




                  15113








                  • 19





                    This answer doesn't help anyone using a different base image.

                    – Charles Offenbacher
                    Jan 13 '18 at 18:45











                  • Then they can use Tomasz's answer

                    – posit labs
                    Jan 13 '18 at 22:54














                  • 19





                    This answer doesn't help anyone using a different base image.

                    – Charles Offenbacher
                    Jan 13 '18 at 18:45











                  • Then they can use Tomasz's answer

                    – posit labs
                    Jan 13 '18 at 22:54








                  19




                  19





                  This answer doesn't help anyone using a different base image.

                  – Charles Offenbacher
                  Jan 13 '18 at 18:45





                  This answer doesn't help anyone using a different base image.

                  – Charles Offenbacher
                  Jan 13 '18 at 18:45













                  Then they can use Tomasz's answer

                  – posit labs
                  Jan 13 '18 at 22:54





                  Then they can use Tomasz's answer

                  – posit labs
                  Jan 13 '18 at 22:54











                  2














                  Updated solution as of Jan 2019:



                  FROM ubuntu:latest
                  USER root
                  WORKDIR /home/app
                  COPY ./package.json /home/app/package.json
                  RUN apt-get update
                  RUN apt-get -y install curl gnupg
                  RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
                  RUN apt-get -y install nodejs
                  RUN npm install





                  share|improve this answer




























                    2














                    Updated solution as of Jan 2019:



                    FROM ubuntu:latest
                    USER root
                    WORKDIR /home/app
                    COPY ./package.json /home/app/package.json
                    RUN apt-get update
                    RUN apt-get -y install curl gnupg
                    RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
                    RUN apt-get -y install nodejs
                    RUN npm install





                    share|improve this answer


























                      2












                      2








                      2







                      Updated solution as of Jan 2019:



                      FROM ubuntu:latest
                      USER root
                      WORKDIR /home/app
                      COPY ./package.json /home/app/package.json
                      RUN apt-get update
                      RUN apt-get -y install curl gnupg
                      RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
                      RUN apt-get -y install nodejs
                      RUN npm install





                      share|improve this answer













                      Updated solution as of Jan 2019:



                      FROM ubuntu:latest
                      USER root
                      WORKDIR /home/app
                      COPY ./package.json /home/app/package.json
                      RUN apt-get update
                      RUN apt-get -y install curl gnupg
                      RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
                      RUN apt-get -y install nodejs
                      RUN npm install






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Jan 27 at 18:37









                      DanDan

                      1211




                      1211























                          0














                          installing nodejs v8 with ubuntu 16.04 base image:



                          FROM ubuntu:16.04

                          WORKDIR /app

                          RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment
                          RUN echo "LANG=en_US.UTF-8" >> /etc/environment
                          RUN echo "NODE_ENV=development" >> /etc/environment
                          RUN more "/etc/environment"
                          #RUN locale-gen en_US en_US.UTF-8
                          #RUN dpkg-reconfigure locales

                          RUN apt-get update
                          RUN apt-get upgrade -y
                          RUN apt-get dist-upgrade -y
                          RUN apt-get install curl htop git zip nano ncdu build-essential chrpath libssl-dev libxft-dev pkg-config glib2.0-dev libexpat1-dev gobject-introspection python-gi-dev apt-transport-https libgirepository1.0-dev libtiff5-dev libjpeg-turbo8-dev libgsf-1-dev fail2ban nginx -y

                          # Install Node.js
                          RUN curl -sL https://deb.nodesource.com/setup_8.x | bash
                          RUN apt-get install --yes nodejs
                          RUN node -v
                          RUN npm -v
                          RUN npm i -g nodemon
                          RUN nodemon -v

                          # Cleanup
                          RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y


                          I also installed some extra dependencies I need so you can clean up this code for your needs. But it installs nodejs & npm & nodemon.






                          share|improve this answer




























                            0














                            installing nodejs v8 with ubuntu 16.04 base image:



                            FROM ubuntu:16.04

                            WORKDIR /app

                            RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment
                            RUN echo "LANG=en_US.UTF-8" >> /etc/environment
                            RUN echo "NODE_ENV=development" >> /etc/environment
                            RUN more "/etc/environment"
                            #RUN locale-gen en_US en_US.UTF-8
                            #RUN dpkg-reconfigure locales

                            RUN apt-get update
                            RUN apt-get upgrade -y
                            RUN apt-get dist-upgrade -y
                            RUN apt-get install curl htop git zip nano ncdu build-essential chrpath libssl-dev libxft-dev pkg-config glib2.0-dev libexpat1-dev gobject-introspection python-gi-dev apt-transport-https libgirepository1.0-dev libtiff5-dev libjpeg-turbo8-dev libgsf-1-dev fail2ban nginx -y

                            # Install Node.js
                            RUN curl -sL https://deb.nodesource.com/setup_8.x | bash
                            RUN apt-get install --yes nodejs
                            RUN node -v
                            RUN npm -v
                            RUN npm i -g nodemon
                            RUN nodemon -v

                            # Cleanup
                            RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y


                            I also installed some extra dependencies I need so you can clean up this code for your needs. But it installs nodejs & npm & nodemon.






                            share|improve this answer


























                              0












                              0








                              0







                              installing nodejs v8 with ubuntu 16.04 base image:



                              FROM ubuntu:16.04

                              WORKDIR /app

                              RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment
                              RUN echo "LANG=en_US.UTF-8" >> /etc/environment
                              RUN echo "NODE_ENV=development" >> /etc/environment
                              RUN more "/etc/environment"
                              #RUN locale-gen en_US en_US.UTF-8
                              #RUN dpkg-reconfigure locales

                              RUN apt-get update
                              RUN apt-get upgrade -y
                              RUN apt-get dist-upgrade -y
                              RUN apt-get install curl htop git zip nano ncdu build-essential chrpath libssl-dev libxft-dev pkg-config glib2.0-dev libexpat1-dev gobject-introspection python-gi-dev apt-transport-https libgirepository1.0-dev libtiff5-dev libjpeg-turbo8-dev libgsf-1-dev fail2ban nginx -y

                              # Install Node.js
                              RUN curl -sL https://deb.nodesource.com/setup_8.x | bash
                              RUN apt-get install --yes nodejs
                              RUN node -v
                              RUN npm -v
                              RUN npm i -g nodemon
                              RUN nodemon -v

                              # Cleanup
                              RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y


                              I also installed some extra dependencies I need so you can clean up this code for your needs. But it installs nodejs & npm & nodemon.






                              share|improve this answer













                              installing nodejs v8 with ubuntu 16.04 base image:



                              FROM ubuntu:16.04

                              WORKDIR /app

                              RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment
                              RUN echo "LANG=en_US.UTF-8" >> /etc/environment
                              RUN echo "NODE_ENV=development" >> /etc/environment
                              RUN more "/etc/environment"
                              #RUN locale-gen en_US en_US.UTF-8
                              #RUN dpkg-reconfigure locales

                              RUN apt-get update
                              RUN apt-get upgrade -y
                              RUN apt-get dist-upgrade -y
                              RUN apt-get install curl htop git zip nano ncdu build-essential chrpath libssl-dev libxft-dev pkg-config glib2.0-dev libexpat1-dev gobject-introspection python-gi-dev apt-transport-https libgirepository1.0-dev libtiff5-dev libjpeg-turbo8-dev libgsf-1-dev fail2ban nginx -y

                              # Install Node.js
                              RUN curl -sL https://deb.nodesource.com/setup_8.x | bash
                              RUN apt-get install --yes nodejs
                              RUN node -v
                              RUN npm -v
                              RUN npm i -g nodemon
                              RUN nodemon -v

                              # Cleanup
                              RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y


                              I also installed some extra dependencies I need so you can clean up this code for your needs. But it installs nodejs & npm & nodemon.







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Aug 11 '18 at 20:02









                              LukasLukas

                              1547




                              1547























                                  0














                                  I am using following Dockerfile to setup node version 8.10.0.



                                  Here I have used NVM (Node Version Manager ), so we can choose which node version should be installed on that container. Please use absolute path of npm when installing node modules (eg: /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g)



                                     FROM ubuntu:18.04
                                  ENV NODE_VERSION=8.10.0
                                  RUN apt-get update &&
                                  apt-get install wget curl ca-certificates rsync -y
                                  RUN wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
                                  ENV NVM_DIR=/root/.nvm
                                  RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
                                  RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}
                                  RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
                                  RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/node /usr/bin/
                                  RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm /usr/bin/
                                  RUN /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g


                                  Note: This is a cropped Dockerfile.






                                  share|improve this answer




























                                    0














                                    I am using following Dockerfile to setup node version 8.10.0.



                                    Here I have used NVM (Node Version Manager ), so we can choose which node version should be installed on that container. Please use absolute path of npm when installing node modules (eg: /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g)



                                       FROM ubuntu:18.04
                                    ENV NODE_VERSION=8.10.0
                                    RUN apt-get update &&
                                    apt-get install wget curl ca-certificates rsync -y
                                    RUN wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
                                    ENV NVM_DIR=/root/.nvm
                                    RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
                                    RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}
                                    RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
                                    RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/node /usr/bin/
                                    RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm /usr/bin/
                                    RUN /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g


                                    Note: This is a cropped Dockerfile.






                                    share|improve this answer


























                                      0












                                      0








                                      0







                                      I am using following Dockerfile to setup node version 8.10.0.



                                      Here I have used NVM (Node Version Manager ), so we can choose which node version should be installed on that container. Please use absolute path of npm when installing node modules (eg: /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g)



                                         FROM ubuntu:18.04
                                      ENV NODE_VERSION=8.10.0
                                      RUN apt-get update &&
                                      apt-get install wget curl ca-certificates rsync -y
                                      RUN wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
                                      ENV NVM_DIR=/root/.nvm
                                      RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
                                      RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}
                                      RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
                                      RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/node /usr/bin/
                                      RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm /usr/bin/
                                      RUN /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g


                                      Note: This is a cropped Dockerfile.






                                      share|improve this answer













                                      I am using following Dockerfile to setup node version 8.10.0.



                                      Here I have used NVM (Node Version Manager ), so we can choose which node version should be installed on that container. Please use absolute path of npm when installing node modules (eg: /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g)



                                         FROM ubuntu:18.04
                                      ENV NODE_VERSION=8.10.0
                                      RUN apt-get update &&
                                      apt-get install wget curl ca-certificates rsync -y
                                      RUN wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
                                      ENV NVM_DIR=/root/.nvm
                                      RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
                                      RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}
                                      RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
                                      RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/node /usr/bin/
                                      RUN cp /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm /usr/bin/
                                      RUN /root/.nvm/versions/node/v${NODE_VERSION}/bin/npm install leasot@latest -g


                                      Note: This is a cropped Dockerfile.







                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Feb 27 at 7:32









                                      Sijo M CyrilSijo M Cyril

                                      1




                                      1






























                                          draft saved

                                          draft discarded




















































                                          Thanks for contributing an answer to Ask Ubuntu!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function () {
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f720784%2fhow-to-install-latest-node-inside-a-docker-container%23new-answer', 'question_page');
                                          }
                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          How to send String Array data to Server using php in android

                                          Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

                                          Is anime1.com a legal site for watching anime?