FROM ubuntu:latest RUN apt-get update && apt-get install -y nginx COPY config/nginx.conf /etc/nginx/nginx.conf COPY public/index.html /usr/share/nginx/html/index.html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]