-
-
Save lex111/90acdd955201189677b9364d024c1327 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:carbon | |
# Создать директорию app | |
WORKDIR /app | |
# Установить зависимости приложения | |
# Используется символ подстановки для копирования как package.json, так и package-lock.json, | |
# работает с npm@5+ | |
COPY package*.json ./ | |
RUN npm install | |
# Используется при сборке кода в продакшене | |
# RUN npm install --only=production | |
# Скопировать исходники приложения | |
COPY src /app | |
EXPOSE 8080 | |
CMD [ "node", "server.js" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment