diff --git a/Dockerfile b/Dockerfile index 53038d544..337f9dad0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,8 @@ RUN apk --update add git && \ # Install dependencies COPY package*.json ./ +# Installing latest version of npm 6. The one packaged with node:12.16.1-alpine3.11 has a bug. +RUN npm install -g npm@6 RUN npm install # Copy sources diff --git a/README.md b/README.md index 44ae0d080..69989117d 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ asyncapi/generator [COMMAND HERE] docker run --rm -it \ -v ${PWD}/test/docs/streetlights.yml:/app/asyncapi.yml \ -v ${PWD}/output:/app/output \ -asyncapi/generator -o ./output asyncapi.yml markdown +asyncapi/generator -o ./output asyncapi.yml @asyncapi/html-template --force-write ``` ## Usage