result code build ์์ ์ค๋ฅ ์์ผ์ ๋ถ๋ค
FROM node:10-slimRUN echo "deb http://archive.debian.org/debian stretch main" > /etc/apt/sources.list# add curl for healthcheckRUN apt-get update \ && apt-get install -y --no-install-recommends \ curl \ && rm -rf /var/lib/apt/lists/*# Add Tini for proper init of signalsENV TINI_VERSION v0.19.0ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tiniRUN chmod +x /tiniWORKDIR /app# have nodemon available for local dev use (file watching)RUN npm install -g nodemonCOPY package*.json ./RUN npm ci \ && npm cache clean --force \ && mv /app/node_modules /node_modulesCOPY . .ENV PORT 80EXPOSE 80CMD ["/tini", "--", "node", "server.js"]๋๋ถ์ ์ ํด๊ฒฐ ํ์ต๋๋ค ๊ฐ์ฌํฉ๋๋ค!