Don't use globbing
This commit is contained in:
parent
9e1ab047a3
commit
4e9fb3829c
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ WORKDIR $INSTDIR
|
||||||
RUN ( wget -O ${InstallerJar} ${ForgeUrl1} || wget -O ${InstallerJar} ${ForgeUrl2} ) && \
|
RUN ( wget -O ${InstallerJar} ${ForgeUrl1} || wget -O ${InstallerJar} ${ForgeUrl2} ) && \
|
||||||
echo "eula=true" > eula.txt && \
|
echo "eula=true" > eula.txt && \
|
||||||
java -jar ./${InstallerJar} --installServer && rm -f ${InstallerJar} && \
|
java -jar ./${InstallerJar} --installServer && rm -f ${InstallerJar} && \
|
||||||
ln -s "forge-*.jar" forge.jar || exit 2
|
ln -s "$(find -maxdepth 1 -name 'forge-*.jar')" forge.jar || exit 2
|
||||||
|
|
||||||
COPY entrypoint.sh /usr/bin
|
COPY entrypoint.sh /usr/bin
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue