Skip to content

Instantly share code, notes, and snippets.

@NickEngland
NickEngland / Dockerfile
Last active February 7, 2019 17:57
Jobson with docker binaries
FROM adamkewley/jobson:latest
RUN apt update && \
apt-get -y install apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common && \
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg > /tmp/dkey; apt-key add /tmp/dkey && \
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \