wesnoth/utils/dockerbuilds/make_steam_image
2025-02-15 14:47:28 -06:00

23 lines
732 B
Bash
Executable File

#!/bin/sh
set -xeu
VALVEFILE=com.valvesoftware.SteamRuntime.Sdk-amd64,i386-sniper-sysroot.Dockerfile
VALVETAR=com.valvesoftware.SteamRuntime.Sdk-amd64,i386-sniper-sysroot.tar.gz
VALVE_SNAPSHOT=3.0.20250210.116596
DOCKERBASEIMAGE=steamrt_sniper_amd64
DOCKERLOCALIMAGE=wesnoth/wesnoth:steamrt-sniper
DOCKERLOCALFILE=./CI/Dockerfile-base-steamrt
if [ ! -f "$VALVEFILE" ]; then
wget https://repo.steampowered.com/steamrt-images-sniper/snapshots/"$VALVE_SNAPSHOT"/"$VALVEFILE"
fi
if [ ! -f "$VALVETAR" ]; then
wget https://repo.steampowered.com/steamrt-images-sniper/snapshots/"$VALVE_SNAPSHOT"/"$VALVETAR"
fi
docker build -t "$DOCKERBASEIMAGE" -f "$VALVEFILE" .
docker build -t "$DOCKERLOCALIMAGE" -f "$DOCKERLOCALFILE" .