fabis-ralph-loop 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -70,8 +70,9 @@ RUN echo '<%= user %> ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
|
|
70
70
|
RUN printf 'eval "$(direnv hook bash)" || true\n' >> /etc/bash.bashrc \
|
|
71
71
|
&& printf '[ "$PWD" = "/workspace" ] && eval "$(direnv export bash 2>&1)" 2>/dev/null || true\n' >> /etc/bash.bashrc
|
|
72
72
|
|
|
73
|
-
#
|
|
74
|
-
RUN
|
|
73
|
+
# Pre-install Ralph loop CLI so it's available immediately (no npx download on first run)
|
|
74
|
+
RUN npm install -g fabis-ralph-loop@<%= packageVersion %>
|
|
75
|
+
RUN printf '#!/bin/bash\nexec fabis-ralph-loop run "$@"\n' \
|
|
75
76
|
> /usr/local/bin/run-fabis-ralph-loop && chmod +x /usr/local/bin/run-fabis-ralph-loop
|
|
76
77
|
|
|
77
78
|
WORKDIR /workspace
|