From 4d37debb0cbc4135f00c92c9d1d6267337c1788c Mon Sep 17 00:00:00 2001 From: Sergey Besedin Date: Mon, 19 Jan 2026 00:19:41 +0400 Subject: [PATCH] Use gitea runner image --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 46359a9..b33ad55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,8 @@ # original: https://github.com/William-Yeh/docker-ansible/blob/master/alpine3/Dockerfile -FROM alpine:latest +FROM gitea/runner-images:ubuntu-latest -RUN echo "===> Adding Python runtime..." && \ - apk add --no-cache ansible ansible-lint openssl ca-certificates sshpass openssh-client git curl bash && \ - - echo "===> Removing package list..." && \ - rm -rf /var/cache/apk/* +RUN apt update && apt install ansible ansible-lint sshpass RUN mkdir /ansible