FROM nginx:alpine COPY public/ /usr/share/nginx/html # Install wget and download jQuery RUN apk add --no-cache wget && \ mkdir -p /usr/share/nginx/html/jquery && \ wget https://code.jquery.com/jquery-3.5.1.slim.min.js -O /usr/share/nginx/html/jquery/jquery-3.5.1.slim.min.js