Skip to content

Commit

Permalink
Update README.md with dockerfile changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sharktrexer authored Jan 21, 2025
1 parent 5855749 commit b0c1a77
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,14 +198,17 @@ jobs:
Provided in this project is an example Dockerfile that you can use to create a container that verifies a markdown list. For easy copy/paste:

```
# Dockerfile for link-reaper
# Dockerfil for link-reaper
FROM python:3.13.1
# Where the markdown file is located. Default is current location of this file
WORKDIR ./
RUN pip install the-link-reaper
# Command to run link-reaper on your file without overwriting
# Command to run link-reaper on your file without overwriting or file creation
# Customize as you desire
CMD ["link-reaper", "reap", "yourfile.md", "-is", -m"]
RUN link-reaper reap yourfile.md -is -m -dl
```

Now you can use the following commands in your terminal to run:
Expand Down

0 comments on commit b0c1a77

Please sign in to comment.