Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sharktrexer authored Jan 21, 2025
1 parent 4f6092b commit 5855749
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# Dockerfil for link-reaper
FROM python:3.9.6
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", "-m"]
RUN link-reaper reap yourfile.md -is -m -dl

# Now you can use the following commands to run:
# docker build -t link-reaper .
# docker run link-reaper
# docker run link-reaper

0 comments on commit 5855749

Please sign in to comment.