Files
hotell777_260507/Dockerfile
2026-05-07 16:41:57 +05:00

13 lines
348 B
Docker
Raw 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.
FROM node:22-alpine
WORKDIR /app
# Устанавливаем git
RUN apk update --no-cache
RUN apk add --no-cache git
RUN git clone https://git.dadehard.ru/kalugin66/hotell777_260507.git .
# Копируем уже склонированный репозиторий с хоста
#COPY ./hotel777 /app
RUN npm i
EXPOSE 3000
CMD ["npm", "start"]