From 3d684e64f1b2d76037d73b2b4380c7519c5805ea Mon Sep 17 00:00:00 2001 From: shnee Date: Mon, 30 Jan 2023 20:15:00 -0500 Subject: [PATCH] debug --- .drone.yml | 2 ++ Dockerfile.36 | 7 +++++++ Dockerfile.37 | 7 +++++++ Dockerfile.latest | 7 +++++++ 4 files changed, 23 insertions(+) create mode 100644 Dockerfile.36 create mode 100644 Dockerfile.37 create mode 100644 Dockerfile.latest diff --git a/.drone.yml b/.drone.yml index 24e4c30..eaa6763 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,6 +4,7 @@ type: docker name: docker-build steps: + - name: build image: docker.shnee.net/shnee/dind:19.03 pull: always @@ -20,6 +21,7 @@ steps: - eval $(ssh-agent -s) - echo "$SSH_KEY" | ssh-add - - ssh-keyscan -p 222 -H git.shnee.net > ~/.ssh/known_hosts 2> /dev/null + - git submodule update --init - make - make push-all diff --git a/Dockerfile.36 b/Dockerfile.36 new file mode 100644 index 0000000..6a9dc44 --- /dev/null +++ b/Dockerfile.36 @@ -0,0 +1,7 @@ +FROM fedora:36 + +# Install ansible using dnf. We originally were going to have a flag for whether +# to use dnf or pip to install ansible however it looks like dnf installs all +# the python libs in the same location that pip would, therefore there doesn't +# seem to be a meaningful difference between the 2 install options. +RUN dnf install -y ansible diff --git a/Dockerfile.37 b/Dockerfile.37 new file mode 100644 index 0000000..cd62a50 --- /dev/null +++ b/Dockerfile.37 @@ -0,0 +1,7 @@ +FROM fedora:37 + +# Install ansible using dnf. We originally were going to have a flag for whether +# to use dnf or pip to install ansible however it looks like dnf installs all +# the python libs in the same location that pip would, therefore there doesn't +# seem to be a meaningful difference between the 2 install options. +RUN dnf install -y ansible diff --git a/Dockerfile.latest b/Dockerfile.latest new file mode 100644 index 0000000..7184271 --- /dev/null +++ b/Dockerfile.latest @@ -0,0 +1,7 @@ +FROM fedora:latest + +# Install ansible using dnf. We originally were going to have a flag for whether +# to use dnf or pip to install ansible however it looks like dnf installs all +# the python libs in the same location that pip would, therefore there doesn't +# seem to be a meaningful difference between the 2 install options. +RUN dnf install -y ansible