Skip to content

Commit ab569a2

Browse files
authored
Merge pull request #175 from phyzical/master
Copy less files in Docker and download git updates
2 parents 5883d0b + 6b8f6f4 commit ab569a2

File tree

3 files changed

+55
-1
lines changed

3 files changed

+55
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
.env copy
55
/custom_files/*
66
cs2
7+
tmp

Dockerfile

+9-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,15 @@ ENV SRC_DIR="/home/cs2-modded-server"
3838

3939
WORKDIR $SRC_DIR
4040

41-
COPY . $SRC_DIR
41+
COPY custom_files $SRC_DIR/custom_files
42+
43+
COPY install_docker.sh \
44+
run.sh \
45+
start.sh \
46+
stop.sh \
47+
$SRC_DIR
48+
49+
COPY game/csgo $SRC_DIR/game/csgo
4250

4351
USER steam
4452

scripts/check-updates.sh

+45
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,50 @@ fetch_last_updated() {
8484
fi
8585
}
8686

87+
download_and_extract_latest_release() {
88+
local repo_url="$1"
89+
if [[ $repo_url != *"github.com"* ]]; then
90+
echo "Unsupported URL: $repo_url"
91+
return
92+
fi
93+
94+
local repo_name=$(echo "$repo_url" | awk -F'github.com/' '{print $2}')
95+
local latest_release_urls=$(curl -s "https://api.github.com/repos/${repo_name}/releases/latest" | grep "browser_download_url" | cut -d '"' -f 4)
96+
97+
if [ -z "$latest_release_urls" ]; then
98+
echo "No releases found for $repo_name"
99+
return 1
100+
fi
101+
102+
rm -rf "./tmp/${repo_name}"
103+
local temp_dir="./tmp/${repo_name}"
104+
mkdir -p "${temp_dir}" || echo ""
105+
106+
for url in $latest_release_urls; do
107+
local temp_file="./tmp/$(basename "$url")"
108+
local temp_unzip_dir="$temp_dir"
109+
110+
if [[ "$temp_file" == *"windows"* ]]; then
111+
temp_unzip_dir="$temp_unzip_dir/windows"
112+
elif [[ "$temp_file" == *"linux"* ]]; then
113+
temp_unzip_dir="$temp_unzip_dir/linux"
114+
fi
115+
116+
if [ ! -f "$temp_file" ]; then
117+
echo "Downloading latest release from $url..."
118+
curl -L -o "$temp_file" "$url"
119+
fi
120+
121+
echo "Extracting $temp_file..."
122+
case "$temp_file" in
123+
*.tar.gz) tar --overwrite -xzf "$temp_file" -C "$temp_unzip_dir" >/dev/null ;;
124+
*.zip) unzip -o "$temp_file" -d "$temp_unzip_dir" >/dev/null ;;
125+
*) echo "Unsupported file format: $temp_file" ;;
126+
esac
127+
done
128+
echo "Latest release downloaded and extracted to $temp_dir"
129+
}
130+
87131
main() {
88132
# Call extract_mods and read output into an array
89133
IFS=$'\n' read -rd '' -a modList < <(extract_mods)
@@ -105,6 +149,7 @@ main() {
105149
echo -e "\033[0;32m✅ ${name} ${latest_release}\033[0m"
106150
else
107151
echo -e "\033[0;33m📦 ${name} update available ${version} > ${latest_release} ${url}\033[0m"
152+
download_and_extract_latest_release "$url"
108153
fi
109154
elif [ -n "$last_updated" ]; then
110155
echo -e "\033[1;30m🔍 ${name} ${version} - Last updated ${last_updated} ${url}\033[0m"

0 commit comments

Comments
 (0)