Does anyone know how I have to copy npm's package....
# neuvector_suse-security
p
Does anyone know how I have to copy npm's package.json and package-lock.json into an image so that it will be found by the neuvector scanner? My dockerfile looks like this:
Copy code
FROM baseImages/nginx:latest
... // reduced for readability
COPY ./workspace/package.json /package.json
COPY ./workspace/package-lock.json /package-lock.json
COPY ${NGINX_CONFIG_PATH} /etc/nginx/conf.d/
COPY ${APP_ROOTFOLDER}/${APP_NAME} /usr/share/nginx/html