Skip to content

Commit

Permalink
Remove duplicate space in dockerfile template
Browse files Browse the repository at this point in the history
Change-type: patch
Signed-off-by: Lucian Buzzo <lucian.buzzo@gmail.com>
  • Loading branch information
LucianBuzzo committed Jul 24, 2020
1 parent 3b886dd commit 360b274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
CMD ["npm", "start"]

0 comments on commit 360b274

Please sign in to comment.