site/Dockerfile
Ref: Size: 462 B History
FROM docker.io/library/nginx:alpine # The nginx:alpine tag lags Alpine's own package repo, so an image built the day # a util-linux advisory lands still carries the vulnerable libuuid and the ship # pipeline's HIGH/CRITICAL scan refuses to publish it. Take the fixes from the # distro rather than waiting for the base to be rebuilt upstream. RUN apk --no-cache upgrade COPY site/nginx.conf /etc/nginx/conf.d/default.conf COPY site/dist/ /usr/share/nginx/html/