From 8e0d84289cce452d2125638cc8f03e757e373468 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sat, 10 Jan 2026 00:41:29 -0500 Subject: [PATCH] try node alpine --- Dockerfile | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e0dac9..2b9da2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,18 @@ -FROM catthehacker/ubuntu:act-latest +# FROM catthehacker/ubuntu:act-latest -RUN apt-add-repository ppa:ansible/ansible && \ - apt-get update && \ - apt-get install -y ansible && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* +# RUN apt-add-repository ppa:ansible/ansible && \ +# apt-get update && \ +# apt-get install -y ansible && \ +# apt-get clean && \ +# rm -rf /var/lib/apt/lists/* -RUN node --version && \ - npm --version && \ - ansible --version && \ - docker --version \ No newline at end of file +# RUN node --version && \ +# npm --version && \ +# ansible --version && \ +# docker --version +FROM node:20-alpine + +RUN apk add --no-cache python3 py3-pip && \ + pip3 install --no-cache-dir ansible-core + +WORKDIR /workspace \ No newline at end of file