From 0553a4815c06b3efc68b19bcf791d6b81a745ab4 Mon Sep 17 00:00:00 2001 From: Michael Trip Date: Wed, 24 Jun 2026 13:21:35 +0200 Subject: [PATCH] reverting back to working example --- Dockerfile | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index e3d0044..2e4d40d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,19 +3,8 @@ FROM ${NODE_IMAGE} AS webssh2-builder ENV DEBIAN_FRONTEND=noninteractive -# renovate: datasource=github-releases depName=janosmiko/lfk -ARG LFK_VERSION=0.14.9 -# renovate: datasource=github-releases depName=kubernetes/kubernetes -ARG KUBECTL_VERSION=1.31.0 -# renovate: datasource=github-releases depName=helm/helm -ARG HELM_VERSION=3.16.2 -# renovate: datasource=github-releases depName=derailed/k9s -ARG K9S_VERSION=0.40.10 -# renovate: datasource=github-releases depName=billchurch/webssh2 ARG WEBSSH2_VERSION=5.0.1 - - RUN apt-get update \ && apt-get install -y --no-install-recommends ca-certificates curl \ && rm -rf /var/lib/apt/lists/* \ @@ -32,6 +21,11 @@ RUN apt-get update \ FROM debian:trixie-slim +ARG LFK_VERSION=0.14.9 +ARG KUBECTL_VERSION=1.31.0 +ARG HELM_VERSION=3.16.2 +ARG K9S_VERSION=0.40.10 +ARG WEBSSH2_VERSION=5.0.1 ENV DEBIAN_FRONTEND=noninteractive \ WEB_SSH_PORT=3000 \ @@ -111,4 +105,4 @@ EXPOSE 2222 3000 HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \ CMD nc -z 127.0.0.1 "${SSH_PORT:-2222}" || exit 1 -ENTRYPOINT ["/usr/bin/tini", "--", "/usr/local/bin/entrypoint.sh"] +ENTRYPOINT ["/usr/bin/tini", "--", "/usr/local/bin/entrypoint.sh"] \ No newline at end of file