From 8ed5d8b03d871773b739e7d36b9930024b84364d Mon Sep 17 00:00:00 2001 From: AirryCo Date: Thu, 3 Apr 2025 14:18:29 +0800 Subject: [PATCH] 3.11.2 --- docker/Dockerfile-manual | 4 ++-- docker/Dockerfile-manual-fika | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile-manual b/docker/Dockerfile-manual index 218cb95..155abcb 100644 --- a/docker/Dockerfile-manual +++ b/docker/Dockerfile-manual @@ -1,6 +1,6 @@ -FROM node:20.11.1-bullseye AS server-builder +FROM node:22.12.0-bullseye AS server-builder RUN apt update && apt install -y git git-lfs p7zip-full && \ - git clone -b 3.11.1 --depth=1 https://github.com/AirryCo/spt-server.git /snapshot && \ + git clone -b 3.11.2 --depth=1 https://github.com/AirryCo/spt-server.git /snapshot && \ cd /snapshot && git lfs pull && \ cd project && \ npm install && npm run build:release && \ diff --git a/docker/Dockerfile-manual-fika b/docker/Dockerfile-manual-fika index 4a0a927..c5aec0e 100644 --- a/docker/Dockerfile-manual-fika +++ b/docker/Dockerfile-manual-fika @@ -1,13 +1,13 @@ -FROM node:20.11.1-alpine AS fika-builder +FROM node:22.12.0-alpine AS fika-builder RUN apk add --no-cache git unzip && \ - git clone -b v2.4.1 --depth=1 https://github.com/project-fika/Fika-Server.git /fika-server && \ + git clone -b v2.4.4 --depth=1 https://github.com/project-fika/Fika-Server.git /fika-server && \ cd /fika-server && \ npm install && npm run build && \ mkdir output && cd output && unzip /fika-server/dist/*.zip -FROM node:20.11.1-bullseye AS server-builder +FROM node:22.12.0-bullseye AS server-builder RUN apt update && apt install -y git git-lfs p7zip-full && \ - git clone -b 3.11.1 --depth=1 https://github.com/AirryCo/spt-server.git /snapshot && \ + git clone -b 3.11.2 --depth=1 https://github.com/AirryCo/spt-server.git /snapshot && \ cd /snapshot && git lfs pull && \ cd project && \ npm install && npm run build:release && \