Skip to content

Commit

Permalink
Merge pull request #135 from alanhoyle/master
Browse files Browse the repository at this point in the history
Add Dockerfile
  • Loading branch information
Arkanosis authored May 20, 2024
2 parents a1b065c + 4b9869b commit 36e686f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM debian:latest

RUN apt-get -y update && \
apt-get -y install curl apt-transport-https gnupg && \
curl -s https://arkanosis.net/jroquet.pub.asc | apt-key add - && \
echo "deb https://apt.arkanosis.net/ software stable" | tee /etc/apt/sources.list.d/arkanosis.list && \
apt-get -y update && \
apt-get -y install bamrescue && \
apt-get -y clean

CMD bamrescue --help

0 comments on commit 36e686f

Please sign in to comment.