Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

dockerfile nodejs

FROM node:10-alpine

RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app

WORKDIR /home/node/app

COPY package*.json ./

USER node

RUN npm install

COPY --chown=node:node . .

EXPOSE 8080

CMD [ "node", "index.js" ]
Comment

sample docker for node js

# syntax=docker/dockerfile:1
FROM node:12-alpine
RUN apk add --no-cache python2 g++ make
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]
EXPOSE 3000
Comment

docker nodejs

# getting a copy of ubuntu for docker
pull ubuntu

# run ubuntu image in interactive mode 
docker run -it ubuntu  

# run ubuntu image in interactive mode while mounting the terminal
# current working directory to ubuntu home folder
docker run -v ${PWD}:/home -it ubuntu

# run ubuntu image in interactive mode while mounting the terminal
# mounting an absolute path on my computer directory to ubuntu home folder
docker run -v /Users/codecaine/Desktop:/home -it ubuntu

# run ubuntu image in interactive mode while mounting the terminal
# mounting an absolute path on my computer directory to ubuntu home/data
# directory
docker run -v /Users/codecaine/Desktop:/home/data -it ubuntu

# run these two commands to be able to install packages with apt-get
apt-get -y update
apt-get -y curl

# installing python and nodejs with apt-get
apt-get -y python3.10 
apt-get -y install nodejs
Comment

docker nodejs

############### RECOMMENDED DOCKER IMAGE VERSION ###############
# <node version>-buster (debian 10) -> latest version
# <node version>-stretch (debian 9) -> stable version
# <node version>-alpine3.15 (alpine) -> small size version
################################################################
 
######################
# START STAGE 1
######################
FROM node:14.19.1-buster as start # change node version with same your app use
USER ${USER}
ENV NODE_OPTIONS=--max_old_space_size=32768
ADD ./package.*json ./
ADD . ./
 
#######################
# UPGRADE STAGE 2
#######################
FROM start as upgrade
COPY --from=start . ./
RUN apt-get autoremove  # this command only for debian image version, change command if you use alpine linux image version
  && apt-get autoclean 
  && apt-get update 
  && apt-get upgrade -y 
  && apt-get install build-essential -y
 
#######################
# FINAL STAGE 3
#######################
FROM upgrade as final
COPY --from=upgrade . ./
RUN rm -rf node_modules 
  && npm cache clean -f 
  && npm config delete proxy 
  delete https-proxy 
  -g delete proxy 
  -g delete https-proxy 
  set strict-ssl false 
  set registry "http://registry.npmjs.org" 
  set fetch-retries 10 
  set fetch-retry-factor 20 
  set fetch-retry-mintimeout 6000000 
  set fetch-retry-maxtimeout 12000000 
  set audit false 
  set cache-min 3600 
  set unsafe-perm true 
  && npm i -g --unsafe-perm 
  node-gyp -g 
  @xpack-dev-tools/windows-build-tools@latest -g 
  pm2 -g  # remove this if you not run your app with pm2
  && npm i --verbose --no-audit 
  && npm rebuild bcrypt --build-from-source  # remove this if you no need
  && npm run build  # change with your command app
  && npm config ls -l
EXPOSE 3000 # change with your port app
CMD npm run prod # change with your command app
Comment

PREVIOUS NEXT
Code Example
Shell :: how to open folder in files from terminal linux 
Shell :: git config --list 
Shell :: gem install to a different directory linux 
Shell :: pycocotools install error 
Shell :: docker.credentials.errors.StoreError: Credentials store docker-credential-desktop.exe exited with "" 
Shell :: how to use ssh to connect to a remote server in linux 
Shell :: how to edit old commit message in git 
Shell :: install vagrant ubuntu 
Shell :: install xq command 
Shell :: Add Docker’s official GPG key: 
Shell :: linux make file 
Shell :: docker connect usb device 
Shell :: restart terminal without closing 
Shell :: how to start elasticsearch correctly 
Shell :: git config ssh protocol 
Shell :: default .gitignore file 
Shell :: docker dir log linux 
Shell :: bash tokenize string 
Shell :: ubuntu install unzip 
Shell :: drf social auth 
Shell :: git move tag position 
Shell :: git remove credentials windows 
Shell :: what is remote repository 
Shell :: expo app size 
Shell :: install docker-compose 
Shell :: raspberry pi ubuntu server raspi-config 
Shell :: sudo apt install 
Shell :: github desktop 
Shell :: gtk3 windows install 
Shell :: git basic commands 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =