# Static landing for spaceshell.ru — served by nginx. # Build context is ./landing (see .gitea/workflows/build.yaml). FROM nginx:1.27-alpine COPY nginx.conf /etc/nginx/conf.d/default.conf COPY index.html /usr/share/nginx/html/index.html COPY pics/ /usr/share/nginx/html/pics/ EXPOSE 80