From 360b27482d0170171037bb88d35ab25ef618a537 Mon Sep 17 00:00:00 2001 From: Lucian Buzzo Date: Fri, 24 Jul 2020 10:57:05 +0100 Subject: [PATCH] Remove duplicate space in dockerfile template Change-type: patch Signed-off-by: Lucian Buzzo --- Dockerfile.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.template b/Dockerfile.template index e39bddd..47c62e7 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -17,11 +17,11 @@ COPY package.json package.json # making sure to clean up the artifacts it creates in order to reduce the image size. RUN JOBS=MAX npm install --production --unsafe-perm && npm cache verify && rm -rf /tmp/* -# This will copy all files in our root to the working directory in the container +# This will copy all files in our root to the working directory in the container COPY . ./ # Enable udevd so that plugged dynamic hardware devices show up in our container. ENV UDEV=1 # server.js will run when container starts up on the device -CMD ["npm", "start"] \ No newline at end of file +CMD ["npm", "start"]