From 085005dab1b22742fa47b1cdbe02ac64104cb980 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Thu, 25 May 2023 15:51:28 +0200 Subject: [PATCH] [CR] Moved image to cr.simoncor.net --- .drone.yml | 6 +++--- Dockerfile.linux.amd64 | 5 ----- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index ee9c3fa..ef2dcef 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,9 +12,9 @@ steps: settings: # registery and repos - registry: 'docker.io' - cache_from: 'rakepanorama/ansible-deployment' - repo: 'rakepanorama/ansible-deployment' + registry: 'cr.simoncor.net' + cache_from: 'siempie/ansible-deployment' + repo: 'cr.simoncor.net/siempie/ansible-deployment' mtu: '1440' # build stuff diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 index b11864b..5ce3391 100644 --- a/Dockerfile.linux.amd64 +++ b/Dockerfile.linux.amd64 @@ -1,13 +1,11 @@ # alpine version FROM alpine:3.16 - # software versions ENV ANSIBLE_VERSION=2.12.10 ENV ANSIBLE_LINT_VERSION=6.16.0 ENV YAML_LINT_VERSION=1.30.0 - # install software RUN apk update RUN apk add --no-cache \ @@ -20,11 +18,9 @@ RUN apk add --no-cache \ python3-dev \ py3-pip - # cleanup RUN rm -rf /var/cache/apk/* - # install ansible + linters RUN pip3 install --upgrade pip RUN pip3 install --use-pep517 --ignore-installed \ @@ -32,7 +28,6 @@ RUN pip3 install --use-pep517 --ignore-installed \ ansible-lint==${ANSIBLE_LINT_VERSION} \ yamllint==${YAML_LINT_VERSION} - # install ansible collections RUN ansible-galaxy collection install ansible.posix RUN ansible-galaxy collection install community.docker