FROM nginx:alpine

# Копируем файлы игры в директорию nginx
COPY index.html /usr/share/nginx/html/index.html
COPY style.css /usr/share/nginx/html/style.css
COPY game.js /usr/share/nginx/html/game.js

# Используем конфигурацию nginx по умолчанию
EXPOSE 80

CMD ["nginx", "-g", "daemon off;"]
