j7s-os/osbuild-manifests/hosting/Dockerfile

11 lines
279 B
Docker

FROM quay.io/fedora/fedora:latest
RUN dnf -y install nginx && dnf clean all
COPY ./hosting/nginx.conf /etc/nginx.conf
COPY ./hosting/edge.ks /usr/share/nginx/html/
ARG commit
ADD ${commit} /usr/share/nginx/html/repo
EXPOSE 8080
CMD ["/usr/sbin/nginx", "-c", "/etc/nginx.conf"]