Skip to content

Commit

Permalink
Merge pull request #76 from jiphex/add-dockerfile
Browse files Browse the repository at this point in the history
Add a Dockerfile to this repository
  • Loading branch information
jpmens committed Dec 10, 2018
2 parents 7ba387e + ab13fb0 commit 66d285f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM alpine AS builder
RUN apk -U add automake autoconf build-base make
COPY . /src
WORKDIR /src
RUN autoreconf -i && ./configure && make check && make install

FROM alpine
COPY --from=builder /usr/local/bin/jo /bin/jo
ENTRYPOINT ["/bin/jo"]

0 comments on commit 66d285f

Please sign in to comment.