Skip to content

Commit

Permalink
add Dockerfile to run it from Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Mar 23, 2019
1 parent c9005b3 commit acea0e6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM debian

RUN apt update -y && \
apt upgrade -y && \
apt install curl -y

WORKDIR app

COPY gh-md-toc .

RUN chmod +x gh-md-toc

ENTRYPOINT ["./gh-md-toc"]
CMD []

0 comments on commit acea0e6

Please sign in to comment.