Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: resolves "invalid bin entry for package" bug #273

Merged
merged 1 commit into from Mar 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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