Skip to content

Commit

Permalink
fix: resolves "invalid bin entry for package" bug (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmvilas committed Mar 30, 2020
1 parent b8876fa commit f3761a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Dockerfile
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down

0 comments on commit f3761a3

Please sign in to comment.