From 717a907e4c11f811be0cbff582df1240c404cc33 Mon Sep 17 00:00:00 2001 From: Dylan Van Assche Date: Tue, 2 Mar 2021 12:30:55 +0100 Subject: [PATCH] fix: Docker COPY command for multiple files --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b2ce72466..ae1d48460 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM node:lts AS build WORKDIR /community-server ## Copy the package.json for audit -COPY package*.json . +COPY package*.json ./ ## Verify if there are known vulnerabilities in the dependencies RUN npm audit --production --audit-level=high