Skip to content

Instantly share code, notes, and snippets.

@elw00d
Created July 24, 2017 08:21
Show Gist options
  • Save elw00d/c0b12584565ec78ef7e9dcee383e74fa to your computer and use it in GitHub Desktop.
Save elw00d/c0b12584565ec78ef7e9dcee383e74fa to your computer and use it in GitHub Desktop.
KeePass dockerfile
FROM ubuntu:14.04
RUN apt-get update && apt-get install -y wget unzip
RUN wget https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.zip
RUN unzip -d /KeePass KeePass-2.36.zip
# xdotool allows KeePass to initiate autoinput (when you press Ctrl+V)
RUN apt-get update && apt-get install -y mono-complete xdotool
WORKDIR /KeePass/
CMD ["mono", "/KeePass/KeePass.exe"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment