From 60627833424d6cd94bf866b1fb9114acb27e6787 Mon Sep 17 00:00:00 2001 From: assaf <233414+lavie@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:26:50 +0100 Subject: [PATCH 1/2] Update Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e1b19b2..bec427a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,9 @@ FROM docker ARG VERSION RUN apk add --no-cache python3 py3-pip + +RUN python3 -m venv /app/venv +ENV PATH="/app/venv/bin:$PATH" RUN pip3 install runlike==$VERSION ENTRYPOINT ["runlike"] From 7784658a08d6a786af3059db5a3eecee7cc4c1fc Mon Sep 17 00:00:00 2001 From: assaf <233414+lavie@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:34:35 +0100 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c5336c3..0f798e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "runlike" -version = "1.4.13" +version = "1.4.14" description = "Reverse-engineer docker run command line arguments based on running containers" authors = ["Assaf Lavie "] license = "MIT"