| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:b4619a63cd7829e1338ddaa4995ca17003002dd54b0dfd675a6f54a2b69151a6 in / |
| CMD ["/bin/bash"] |
| RUN /bin/sh -c apt-get update -y && apt-get upgrade -y # buildkit |
| RUN /bin/sh -c apt-get install -y nginx # buildkit |
| COPY confs/reflection.int.techboredom.com.conf /etc/nginx/conf.d/reflection.int.techboredom.com.conf # buildkit |
| COPY confs/hornet.int.techboredom.com.conf /etc/nginx/conf.d/hornet.int.techboredom.com.conf # buildkit |
| RUN /bin/sh -c mkdir -p /data/reflection # buildkit |
| COPY landing_pages/reflection-int.html /data/reflection/index.html # buildkit |
| COPY landing_pages/hornet-int.html /data/hornet/index.html # buildkit |
| CMD ["nginx" "-g" "daemon off;"] |