modified: container-builder/ubuntu-fatboy.Dockerfile
/ build-push-image (push) Successful in 10m26s

modified:   devops/Dockerfile
This commit is contained in:
Márcio Fernandes
2026-07-17 23:54:53 +01:00
parent d9a1d299ea
commit a4eda8f9aa
2 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ RUN python3 -m venv /usr/local/pyenv \
&& /usr/local/pyenv/bin/pip install --upgrade pip \ && /usr/local/pyenv/bin/pip install --upgrade pip \
&& /usr/local/pyenv/bin/pip install pyyaml && /usr/local/pyenv/bin/pip install pyyaml
# Make virtualenv the default Python # Make virtualenv the default Python
#ENV PATH="/usr/local/pyenv/bin:${PATH}" ENV PATH="/usr/local/pyenv/bin:${PATH}"
# --- Install yq --- # --- Install yq ---
RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \ RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \
+6 -4
View File
@@ -48,10 +48,12 @@ RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | b
RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \ RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \
-O /usr/bin/yq && chmod +x /usr/bin/yq -O /usr/bin/yq && chmod +x /usr/bin/yq
# --- Install Node.js (LTS) ---
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ # Install Node.js 22.x
&& apt-get install -y nodejs \ RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
&& npm install -g npm@latest && apt-get install -y --no-install-recommends nodejs \
&& npm cache clean --force
# --- Install act (GitHub Actions local runner) --- # --- Install act (GitHub Actions local runner) ---
RUN mkdir /tmp/act \ RUN mkdir /tmp/act \