2025-03-03 17:28:22 +03:00

21 lines
528 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Используем Node.js 20 в качестве базового образа
FROM node:20
# Устанавливаем рабочую директорию
WORKDIR /app
# Копируем package.json и package-lock.json
COPY package*.json ./
# Устанавливаем зависимости
RUN npm install
# Копируем исходный код
COPY . .
# Открываем порт (совпадает с PORT в .env)
EXPOSE 5000
# Команда запуска
CMD ["npm", "start"]