File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM docker.io/ eclipse-temurin:17-jre-jammy
1
+ FROM eclipse-temurin:17-jre-jammy
2
2
RUN apt-get -qq update && apt-get -qq install -y unzip jq
3
3
4
4
RUN curl -fsSL -o "/tmp/rcon.tar.gz" $(curl -s https://api.github.com/repos/gorcon/rcon-cli/releases/latest | jq -r '.assets | map(select(.name | test("amd64_linux")))[0].browser_download_url' )
@@ -11,10 +11,16 @@ RUN rm -r /tmp/rcon.tar.gz /tmp/rcon
11
11
12
12
RUN mkdir /data
13
13
WORKDIR /data
14
- RUN curl -fsSL -o "/tmp/pack.zip" "https://www.curseforge.com/api/v1/mods/681792/files/5795419/download"
14
+ RUN curl -fsSL -o "/tmp/pack.zip" "https://www.curseforge.com/api/v1/mods/681792/files/5795941/download"
15
+ RUN curl -fsSL -o "/tmp/old.zip" "https://www.curseforge.com/api/v1/mods/681792/files/4496671/download"
15
16
RUN unzip -q /tmp/pack.zip
17
+ RUN unzip -q /tmp/old.zip -d /tmp/old/
18
+ RUN cp /tmp/old/mods/vinery-1.1.4.jar mods/
19
+ RUN cp /tmp/old/mods/Hephaestus-1.18.2-3.5.2.155.jar mods/
16
20
RUN rm /tmp/pack.zip
17
- RUN curl -fsSL -o "server.jar" "https://meta.fabricmc.net/v2/versions/loader/1.18.2/0.14.22/0.11.2/server/jar"
21
+ RUN rm /tmp/old.zip
22
+ RUN rm -rf /tmp/old/
23
+ RUN curl -fsSL -o "server.jar" "https://meta.fabricmc.net/v2/versions/loader/1.18.2/0.16.3/0.11.1/server/jar"
18
24
19
25
20
26
RUN mkdir init
You can’t perform that action at this time.
0 commit comments