images/minecraft/paper/create.sh

8 lines
216 B
Bash

#!/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} . --arg VERSION=${VERSION}