FROM nginx:alpine COPY web /usr/share/nginx/html RUN sed -i 's/80/7860/g' /etc/nginx/conf.d/default.conf EXPOSE 7860 CMD ["nginx", "-g", "daemon off;"]