From f6582ebae667a068021145a5e6eae60a85032266 Mon Sep 17 00:00:00 2001 From: AirryCo Date: Tue, 3 Dec 2024 13:52:28 +0800 Subject: [PATCH] fix the incorrect branch of spt-server in docker image 'latest-fika' --- docker/Dockerfile-fika | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-fika b/docker/Dockerfile-fika index 70bc236..4d9edb4 100644 --- a/docker/Dockerfile-fika +++ b/docker/Dockerfile-fika @@ -7,7 +7,7 @@ RUN apk add --no-cache git unzip && \ FROM node:20.11.1-alpine AS server-builder RUN apk add --no-cache git git-lfs && \ - git clone -b 3.10.0-DEV --depth=1 https://github.com/AirryCo/spt-server.git /snapshot && \ + git clone -b master --depth=1 https://github.com/AirryCo/spt-server.git /snapshot && \ cd /snapshot && git lfs pull && \ cd project && \ npm install && npm run build:release