5 Commits

Author SHA1 Message Date
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
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@ name: Docker Build and Push
on:
pull_request:
push:
branches: [master]
schedule:
- cron: '30 3 * * 3'
+2 -1
View File
@@ -4,9 +4,10 @@ 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} && \