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] 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"]