File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,8 +6,15 @@ RUN useradd -ms /bin/bash wurstuser
66USER wurstuser
77WORKDIR /home/wurstuser
88
9- RUN curl -L -o WurstSetup.jar https://github.com/wurstscript/WurstSetup/releases/download/nightly-master/WurstSetup.jar
10- RUN java -jar WurstSetup.jar install wurstscript
9+ # Grill (formerly WurstSetup) is published as a nightly fat jar on the
10+ # nightly-master tag, which the upstream deploy workflow force-updates on every
11+ # push to master. Pulling it at build time always yields the latest version.
12+ RUN curl -L -o grill.jar https://github.com/wurstscript/WurstSetup/releases/download/nightly-master/WurstSetup.jar
13+
14+ # Installs the WurstScript compiler to ~/.wurst and creates the `grill`/`wurstscript`
15+ # launchers there. This runs non-interactively: requireConfirmation defaults to false,
16+ # so `install wurstscript` never blocks on stdin.
17+ RUN java -jar grill.jar install wurstscript
1118RUN chmod -R u+x /home/wurstuser/.wurst/
1219
1320ENV PATH="/home/wurstuser/.wurst/:${PATH}"
You can’t perform that action at this time.
0 commit comments