nitro-docker/arcturus/Dockerfile

51 lines
1.7 KiB
Docker
Raw Normal View History

FROM maven:3-amazoncorretto-8 AS builder-ms3
2023-03-13 18:36:30 +01:00
RUN yum install -y git
WORKDIR /build/arcturus-community
RUN git clone --branch dev --recurse-submodules https://git.krews.org/morningstar/Arcturus-Community.git .
2023-03-13 18:36:30 +01:00
RUN mvn package
RUN mvn install
WORKDIR /build/arcturus-ws
RUN git clone --recurse-submodules https://git.krews.org/nitro/ms-websockets.git .
RUN sed -i 's#<version>3.0.0</version>#<version>[1.0.0,)</version>#g' pom.xml
RUN mvn package
RUN cp target/NitroWebsockets-*.jar target/websockets.jar
WORKDIR /build/apollyon
RUN git clone --recurse-submodules https://git.krews.org/morningstar/archive/apollyon.git .
RUN sed -i 's#<version>3.0.0</version>#<version>[1.0.0,)</version>#g' pom.xml
RUN mvn package
RUN cp target/Apollyon-*.jar target/apollyon.jar
FROM maven:3-amazoncorretto-19 AS builder-ms4
ARG BRANCH=ms4/dev
RUN yum install -y git
WORKDIR /build/arcturus-community
RUN git clone --branch ${BRANCH} --recurse-submodules https://git.krews.org/morningstar/Arcturus-Community.git .
RUN sed -i 's#Scanner scanner = new Scanner(System.in);##g' src/main/java/com/eu/habbo/Emulator.java
RUN sed -i 's#scanner.nextLine();##g' src/main/java/com/eu/habbo/Emulator.java
RUN mvn package
RUN cp target/Morningstar*-with-dependencies.jar target/emulator.jar
FROM amazoncorretto:19-alpine
2023-03-13 18:36:30 +01:00
WORKDIR /app
RUN apk add --no-cache mariadb-client bash
COPY --from=builder-ms4 /build/arcturus-community/target/emulator.jar /app/emulator.jar
2023-03-13 18:36:30 +01:00
RUN mkdir -p /app/plugins
COPY --from=builder-ms3 /build/arcturus-ws/target/websockets.jar /app/plugins/websockets.jar
COPY --from=builder-ms3 /build/apollyon/target/apollyon.jar /app//plugins/apollyon.jar
2023-03-13 18:36:30 +01:00
ENTRYPOINT ["/usr/bin/java", "-jar", "/app/emulator.jar"]