images/minecraft/paper/create.sh
2023-12-26 23:01:04 +02:00

8 lines
222 B
Bash
Executable File

#!/bin/zsh
if [[ -z $VERSION ]] ;
then
VERSION=$(curl https://api.papermc.io/v2/projects/paper | \
jq -r .versions[-1]);
fi;
docker build -t minecraft:paper-${VERSION} . --build-arg VERSION=${VERSION}