# Static assets Dockerfile (minimal webserver for /static only) FROM nginx:1.27-alpine WORKDIR /usr/share/nginx/html # Remove default nginx content RUN rm -rf ./* # Copy only static assets from the UI project COPY apps/static/static/ ./ EXPOSE 80 # Use default nginx config; caller can mount custom config if needed