FROM debian:buster RUN apt update && apt install -y nginx COPY ./conf/nginx.conf /etc/nginx/ COPY ./conf/inception_nginx.conf /etc/nginx/conf.d/ COPY ./conf/index.html /data/www/ COPY ./conf/salade.jpeg /data/images/ CMD [ "nginx" ]