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

Instruction for use with docker #106

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,27 @@ If you're on Windows, use the open source telnet client [PuTTY](https://www.chia

## How to run it locally

With a modern node installation available, just start it with
### With a modern node installation available, just start it with
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated:
This shouldn't be a headline. Otherwise, the headline above has no paragraph.


```
npx mapscii
```

### With Docker

Create a local Dockerfile containing
```
FROM node:16-alpine
RUN npm install -g mapscii
CMD mapscii
```

Build and run the docker image
```
docker build -t mapscii .
docker run -it mapscii
```

## How to install it locally

### With npm
Expand Down