Skip to content

Instantly share code, notes, and snippets.

View hoesler's full-sized avatar

Christoph Hösler hoesler

View GitHub Profile

Keybase proof

I hereby claim:

  • I am hoesler on github.
  • I am choesler (https://keybase.io/choesler) on keybase.
  • I have a public key ASBoNxJgEoPy23BWKeADQKozDm9wc3utRMHn0LgTz1K_IAo

To claim this, I am signing this object:

@hoesler
hoesler / Dockerfile
Last active November 30, 2017 17:34
Pipenv #1094
FROM bitnami/minideb
RUN install_packages \
curl \
git \
openssl \
python3 \
python3-pkg-resources \
python3-pip \
python3-dev \
@hoesler
hoesler / install_jenkins_plugin.sh
Last active February 9, 2024 16:28 — forked from micw/install_jenkins_plugin.sh
Script to install one or more jenkins plugins including dependencies while jenkins is offline
#!/usr/bin/env bash
set -e
set -o pipefail
plugin_repo_url="http://updates.jenkins-ci.org/download/plugins"
plugin_dir="/var/lib/jenkins/plugins"
include_optionals=false
showUsage() {