Created
July 24, 2017 08:21
-
-
Save elw00d/c0b12584565ec78ef7e9dcee383e74fa to your computer and use it in GitHub Desktop.
KeePass dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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