cscg24-njs

CSCG 2024 Challenge 'Nimble Join Service'
git clone https://git.sinitax.com/sinitax/cscg24-njs
Log | Files | Refs | sfeed.txt

Dockerfile (216B)


      1FROM nginx:1.24.0
      2
      3RUN mkdir /etc/nginx/http
      4
      5COPY ./nginx.conf /etc/nginx/nginx.conf
      6COPY ./join.js /etc/nginx/http
      7COPY ./index.html /usr/share/nginx/html/index.html
      8
      9EXPOSE 1024
     10
     11CMD ["nginx", "-g", "daemon off;"]