Skip to content

Instantly share code, notes, and snippets.

@numanayhan
Created June 17, 2020 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save numanayhan/b83f8e9cffe8cd1455a916505e848279 to your computer and use it in GitHub Desktop.
Save numanayhan/b83f8e9cffe8cd1455a916505e848279 to your computer and use it in GitHub Desktop.
nodejs-api
FROM node:12
#Proje nodejs 12 ile çalışması için
WORKDIR /home/node/app
#proje yolu belirlenir
COPY Dijital /home/node/app
# Docker içine kopyalanır
RUN npm install
# Docker imajı proje halindeyken çalıştırır
CMD npm run start
# Container çalıştırılırken CMD çalışır.
EXPOSE 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment