8 Commits
Author SHA1 Message Date
jcabillot 7537595b3d Merge pull request 'chore(deps): update hadolint/hadolint-action action to v3.3.0' (#11) from renovate/hadolint-hadolint-action-3.x into master
Docker Build and Push / lint (push) Successful in 5s
Docker Build and Push / build (push) Successful in 1m3s
Docker Build and Push / test (push) Successful in 19s
Docker Build and Push / push (push) Successful in 27s
Reviewed-on: #11
2026-06-12 07:52:34 -04:00
renovate 9dc2840717 chore(deps): update hadolint/hadolint-action action to v3.3.0
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build (pull_request) Successful in 27s
Docker Build and Push / test (pull_request) Successful in 17s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-12 01:15:39 +00:00
jcabillot 36dbc52026 Merge pull request 'fix: add version comments to Gitea Actions workflow' (#10) from fix/action-version-comments into master
Docker Build and Push / lint (push) Successful in 5s
Docker Build and Push / build (push) Successful in 58s
Docker Build and Push / test (push) Successful in 18s
Docker Build and Push / push (push) Successful in 28s
Reviewed-on: #10
2026-06-11 21:13:19 -04:00
cloudix_mcp_server c3104c6881 fix: rewrite workflow with correct YAML (was double-encoded)
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 59s
Docker Build and Push / test (pull_request) Successful in 21s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-11 19:24:27 -04:00
cloudix_mcp_server 97c2a8f4bd fix: add version comments to Gitea Actions workflow 2026-06-11 18:47:27 -04:00
cloudix_mcp_server 69f1b75e14 Merge pull request 'fix: update awscli to v1.45.27 for Python 3.12+ compatibility' (#9) from fix/update-awscli-v1 into master
Docker Build and Push / lint (push) Successful in 6s
Docker Build and Push / build (push) Successful in 47s
Docker Build and Push / test (push) Successful in 11s
Docker Build and Push / push (push) Successful in 31s
2026-06-10 20:24:32 -04:00
Sagent 9a1561d2ad fix: bump Python 3.9→3.14 and awscli 1.16.148→1.45.27
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 46s
Docker Build and Push / test (pull_request) Successful in 17s
Docker Build and Push / push (pull_request) Has been skipped
- Python 3.14 image for latest Python compatibility
- awscli 1.45.27 drops vendored urllib3 with 'from collections import Mapping'
  (removed in Python 3.12+) and supports Python >=3.10
2026-06-10 23:50:37 +00:00
Sagent 83f8fc197f fix: update awscli to v1.45.27 for Python 3.12+ compatibility
Docker Build and Push / lint (pull_request) Successful in 5s
Docker Build and Push / build (pull_request) Failing after 15s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
2026-06-10 23:44:00 +00:00
2 changed files with 12 additions and 12 deletions
+10 -10
View File
@@ -12,22 +12,22 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Hadolint - name: Hadolint
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: lint needs: lint
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Build image - name: Build image
run: docker build -t ci-image:${{ github.sha }} . run: docker build -t ci-image:${{ github.sha }} .
- name: Save image - name: Save image
run: docker save ci-image:${{ github.sha }} > image.tar run: docker save ci-image:${{ github.sha }} > image.tar
- name: Upload artifact - name: Upload artifact
uses: ChristopherHX/gitea-upload-artifact@62ac910c5d3dfa85c7cb2df15afe2e342b2407c2 uses: ChristopherHX/gitea-upload-artifact@62ac910c5d3dfa85c7cb2df15afe2e342b2407c2 # main
with: with:
name: docker-image name: docker-image
path: image.tar path: image.tar
@@ -37,9 +37,9 @@ jobs:
needs: build needs: build
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Download artifact - name: Download artifact
uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 # main
with: with:
name: docker-image name: docker-image
- name: Load image - name: Load image
@@ -53,19 +53,19 @@ jobs:
needs: test needs: test
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Download artifact - name: Download artifact
uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 # main
with: with:
name: docker-image name: docker-image
- name: Load image - name: Load image
run: docker load < image.tar run: docker load < image.tar
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Tag and push - name: Tag and push
run: | run: |
docker tag ci-image:${{ github.sha }} jcabillot/awscli:latest docker tag ci-image:${{ github.sha }} jcabillot/awscli:latest
docker push jcabillot/awscli:latest docker push jcabillot/awscli:latest
+2 -2
View File
@@ -1,7 +1,7 @@
FROM python:3.9-alpine FROM python:3.14-alpine
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>" LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
ARG CLI_VERSION=1.16.148 ARG CLI_VERSION=1.45.27
# hadolint ignore=DL3018,DL3013 # hadolint ignore=DL3018,DL3013
RUN apk --no-cache upgrade && \ RUN apk --no-cache upgrade && \