FROM nginx:alpine RUN useradd -m -u 1000 user USER user ENV PATH="/home/user/.local/bin:$PATH" WORKDIR /app COPY index.html /usr/share/nginx/html COPY nginx.conf /etc/nginx/nginx.conf EXPOSE 7860 CMD ["nginx", "-g", "daemon off;"]