10 Commits

Author SHA1 Message Date
jcabillot b3dda49973 Merge pull request 'chore(deps): update hadolint/hadolint-action action to v3.3.0' (#9) from renovate/hadolint-hadolint-action-3.x into master
Docker Build and Push / lint (push) Successful in 8s
Docker Build and Push / build (push) Successful in 48s
Docker Build and Push / test (push) Successful in 16s
Docker Build and Push / push (push) Successful in 40s
Reviewed-on: #9
2026-06-12 07:47:51 -04:00
renovate 426d4036c0 chore(deps): update hadolint/hadolint-action action to v3.3.0
Docker Build and Push / lint (pull_request) Successful in 8s
Docker Build and Push / build (pull_request) Successful in 55s
Docker Build and Push / test (pull_request) Successful in 24s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-12 01:16:45 +00:00
jcabillot fd04b134de Merge pull request 'fix: add version comments to Gitea Actions workflow' (#8) from fix/action-version-comments into master
Docker Build and Push / lint (push) Successful in 6s
Docker Build and Push / build (push) Successful in 2m7s
Docker Build and Push / test (push) Successful in 26s
Docker Build and Push / push (push) Successful in 53s
Reviewed-on: #8
2026-06-11 21:13:38 -04:00
cloudix_mcp_server 374b2ac661 fix: add version comments to Gitea Actions workflow
Docker Build and Push / lint (pull_request) Successful in 14s
Docker Build and Push / build (pull_request) Successful in 1m46s
Docker Build and Push / test (pull_request) Successful in 23s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-11 19:05:27 -04:00
cloudix_mcp_server 8ee6adac9e Merge pull request 'chore(deps): update ubuntu docker tag to v26' (#4) from renovate/ubuntu-26.x into master
Docker Build and Push / lint (push) Successful in 5s
Docker Build and Push / build (push) Successful in 47s
Docker Build and Push / test (push) Successful in 16s
Docker Build and Push / push (push) Successful in 53s
2026-06-10 23:06:23 -04:00
renovate 083e07992b chore(deps): update ubuntu docker tag to v26
Docker Build and Push / lint (pull_request) Successful in 11s
Docker Build and Push / build (pull_request) Successful in 1m27s
Docker Build and Push / test (pull_request) Successful in 18s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-11 01:46:17 +00:00
cloudix_mcp_server 0e56dadbee Merge pull request 'fix: replace python2 with python-is-python3 for Ubuntu 26.04+' (#7) from fix/remove-python2-dependency into master
Docker Build and Push / lint (push) Successful in 6s
Docker Build and Push / build (push) Successful in 46s
Docker Build and Push / test (push) Successful in 17s
Docker Build and Push / push (push) Successful in 48s
2026-06-10 21:44:38 -04:00
Sagent cb34cae943 fix: create python symlink for Ubuntu cross-version compat
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build (pull_request) Successful in 1m31s
Docker Build and Push / test (pull_request) Successful in 19s
Docker Build and Push / push (pull_request) Has been skipped
Replace 'python' package (Python 2, removed in Ubuntu 24.04+)
with a simple 'ln -sf python3 python' symlink that works on
all Ubuntu versions.
2026-06-11 00:53:49 +00:00
Sagent 0be44f9135 fix: remove python2 dependency for Ubuntu 26.04+ compatibility
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Failing after 19s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
Ubuntu 26.04 no longer provides the 'python' package (Python 2).
Replace with python-is-python3 which creates the symlink for
scripts using '#!/usr/bin/env python'. Keep python3 for runtime.
2026-06-11 00:49:55 +00:00
cloudix_mcp_server 6673e95f7c fix: add branches: [master] filter on push trigger
Docker Build and Push / lint (push) Successful in 6s
Docker Build and Push / build (push) Successful in 54s
Docker Build and Push / test (push) Successful in 25s
Docker Build and Push / push (push) Successful in 49s
2026-06-09 10:48:51 -04:00
4 changed files with 14 additions and 29 deletions
+10 -9
View File
@@ -3,6 +3,7 @@ name: Docker Build and Push
on:
pull_request:
push:
branches: [master]
schedule:
- cron: '30 3 * * 3'
@@ -11,22 +12,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Hadolint
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
build:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Build image
run: docker build -t ci-image:${{ github.sha }} .
- name: Save image
run: docker save ci-image:${{ github.sha }} > image.tar
- name: Upload artifact
uses: ChristopherHX/gitea-upload-artifact@62ac910c5d3dfa85c7cb2df15afe2e342b2407c2
uses: ChristopherHX/gitea-upload-artifact@62ac910c5d3dfa85c7cb2df15afe2e342b2407c2 # main
with:
name: docker-image
path: image.tar
@@ -36,9 +37,9 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Download artifact
uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7
uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 # main
with:
name: docker-image
- name: Load image
@@ -52,15 +53,15 @@ jobs:
needs: test
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Download artifact
uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7
uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 # main
with:
name: docker-image
- name: Load image
run: docker load < image.tar
- name: Login to Docker Hub
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
+1 -1
View File
@@ -1,4 +1,4 @@
image: docker:latest
image: "docker:latest"
services:
- "docker:dind"
+3 -2
View File
@@ -1,12 +1,13 @@
FROM ubuntu:18.04
FROM ubuntu:26.04
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
# hadolint ignore=DL3008,SC3009,SC2086
RUN export DEBIAN_FRONTEND=noninteractive && \
export BUILD_PACKAGES=git-core && \
export RUNTIME_PACKAGES="python python3 bsdmainutils curl python3-six ca-certificates" && \
export RUNTIME_PACKAGES="python3 bsdmainutils curl python3-six ca-certificates" && \
apt-get -qq update && \
apt-get -qq --no-install-recommends --yes install ${BUILD_PACKAGES} ${RUNTIME_PACKAGES} && \
ln -sf /usr/bin/python3 /usr/bin/python && \
git clone https://github.com/jvehent/cipherscan.git && \
/cipherscan/cscan.sh -l && \
apt-get -qq --yes remove --purge ${BUILD_PACKAGES} && \
-17
View File
@@ -1,17 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"gitlabci": {
"enabled": true
},
"regexManagers": [
{
"description": "Track SHA-pinned Gitea Actions (github-actions manager on Gitea platform cannot resolve SHA refs natively)",
"fileMatch": ["^\\.gitea/workflows/.*\\.ya?ml$"],
"matchStrings": [
"uses:\\s+(?<depName>[\\w.-]+\\/[\\w.-]+(?:\\/[\\w.-]+)?)@(?<currentDigest>[a-f0-9]{40})"
],
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
}
]
}