Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
TYPE: full
GITHUB_EVENT: ${{ github.event_name }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v2
uses: peter-evans/dockerhub-description@v4
if: ${{ github.event_name == 'workflow_dispatch' }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dockerhub_description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
dockerhub-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: peter-evans/dockerhub-description@v2
- uses: actions/checkout@v4
- uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down
6 changes: 3 additions & 3 deletions package/alpine-aws/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ ARG http_proxy
ARG https_proxy
ARG RUNIAC_TAG

FROM python:3.11-alpine3.19 as builder
FROM python:3.11-alpine3.20 as builder

ENV AWSCLI_VERSION=2.15.0
ENV AWSCLI_VERSION=2.24.0

RUN apk add --no-cache git unzip groff build-base libffi-dev cmake
RUN git clone --single-branch --depth 1 -b ${AWSCLI_VERSION} https://github.com/aws/aws-cli.git
Expand All @@ -27,4 +27,4 @@ RUN (cd /usr/local/lib/aws-cli; for a in *.so*; do test -f /lib/$a && rm $a; don
# build the final image
FROM runiac/deploy:${RUNIAC_TAG}-alpine
COPY --from=builder /usr/local/lib/aws-cli/ /usr/local/lib/aws-cli/
RUN ln -s /usr/local/lib/aws-cli/aws /usr/local/bin/aws
RUN ln -s /usr/local/lib/aws-cli/aws /usr/local/bin/aws
2 changes: 1 addition & 1 deletion package/alpine-azure/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG http_proxy
ARG https_proxy
ARG RUNIAC_TAG

ARG AZURE_CLI_VERSION=2.60.0
ARG AZURE_CLI_VERSION=2.62.0
ARG KUBECTL_VERSION=0.30.0
ARG KUBELOGIN_VERSION=0.1.3

Expand Down
4 changes: 2 additions & 2 deletions package/alpine-full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG http_proxy
ARG https_proxy
ARG RUNIAC_TAG

ARG AZURE_CLI_VERSION=2.60.0
ARG AZURE_CLI_VERSION=2.62.0
ARG KUBECTL_VERSION=0.30.0
ARG KUBELOGIN_VERSION=0.1.3

Expand All @@ -15,7 +15,7 @@ RUN rm -rf /usr/local/bin/jp || true

FROM runiac/deploy:${RUNIAC_TAG}-alpine-aws

ARG GCLOUD_CLI_VERSION=467.0.0
ARG GCLOUD_CLI_VERSION=558.0.0
ARG TARGETPLATFORM

# install azure cli
Expand Down
2 changes: 1 addition & 1 deletion package/alpine-gcp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG RUNIAC_TAG

FROM runiac/deploy:${RUNIAC_TAG}-alpine

ARG GCLOUD_CLI_VERSION=467.0.0
ARG GCLOUD_CLI_VERSION=558.0.0
ARG TARGETPLATFORM

RUN apk add python3
Expand Down
4 changes: 2 additions & 2 deletions package/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax = docker/dockerfile:experimental

FROM --platform=$TARGETPLATFORM golang:1.22.1-alpine as builder1
FROM --platform=$TARGETPLATFORM golang:1.26.0-alpine as builder1

ARG RUNIAC_REF="refs/heads/main"
ARG TARGETPLATFORM
Expand All @@ -23,7 +23,7 @@ RUN curl -Lo core.zip "https://github.com/Optum/runiac/archive/${RUNIAC_REF}.zip
# and only pull the alpine image once
FROM alpine:3

ARG TERRAFORM_VERSION=1.7.4
ARG TERRAFORM_VERSION=1.10.5

RUN apk update

Expand Down