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