diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -13,6 +13,7 @@ ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && apt-get install -y \ bash \ curl \ + wget \ git \ software-properties-common \ python-dev \ @@ -24,6 +25,7 @@ RUN apt-get update && apt-get install -y \ netcat \ ranger \ ack-grep \ + sqlite3 \ locales # Generally a good idea to have these, extensions sometimes need them @@ -73,6 +75,16 @@ RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes ######################################## +# Dasht Documentation +######################################## +ADD dasht/bin/* /usr/local/bin/ +ENV DASHT_DOCSETS_DIR /root/.local/share/dasht/docsets +RUN mkdir -p /root/.local/share/dasht/docsets +RUN dasht-docsets-install --force django +RUN dasht-docsets-install --force python_3 + + +######################################## # Personalizations ######################################## # Add some aliases |