documentation: fix typo in recommended multistage Dockerfile (#958)

This commit is contained in:
Michael Salaverry 2018-12-18 15:15:39 +02:00 committed by Simen Bekkhus
parent 4df0614998
commit 617a31de36
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ And Here's a multistage build example
FROM node:alpine as builder
## Install build toolchain, install node deps and compile native add-ons
RUN apk add --no-cache --virtual .gyp python make g++ \
RUN apk add --no-cache --virtual .gyp python make g++
RUN npm install [ your npm dependencies here ]
FROM node:alpine as app