Glob filename

Filenames with variables cannot glob, so we are removing the variables here.
This commit is contained in:
paul 2020-11-14 02:05:23 +01:00
parent f18ee5c44c
commit 9e1ab047a3
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ WORKDIR $INSTDIR
RUN ( wget -O ${InstallerJar} ${ForgeUrl1} || wget -O ${InstallerJar} ${ForgeUrl2} ) && \
echo "eula=true" > eula.txt && \
java -jar ./${InstallerJar} --installServer && rm -f ${InstallerJar} && \
ln -s "forge-${MINECRAFT}-${FORGE}.jar" forge.jar || exit 2
ln -s "forge-*.jar" forge.jar || exit 2
COPY entrypoint.sh /usr/bin