Skip to content

Commit

Permalink
Fix autopause not working in java8 (#2025)
Browse files Browse the repository at this point in the history
  • Loading branch information
Metalcape committed Mar 21, 2023
1 parent 7f3c3b2 commit e7084c2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 12 deletions.
19 changes: 7 additions & 12 deletions Dockerfile
Expand Up @@ -3,11 +3,17 @@
ARG BASE_IMAGE=eclipse-temurin:17-jre-focal
FROM ${BASE_IMAGE}

# hook into docker BuildKit --platform support
# see https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope
ARG TARGETOS
ARG TARGETARCH
ARG TARGETVARIANT

# CI system should set this to a hash or git revision of the build directory and it's contents to
# ensure consistent cache updates.
ARG BUILD_FILES_REV=1
RUN --mount=target=/build,source=build \
REV=${BUILD_FILES_REV} /build/run.sh install-packages
REV=${BUILD_FILES_REV} TARGET=${TARGETARCH}${TARGETVARIANT} /build/run.sh install-packages

RUN --mount=target=/build,source=build \
REV=${BUILD_FILES_REV} /build/run.sh setup-user
Expand All @@ -16,12 +22,6 @@ COPY --chmod=644 files/sudoers* /etc/sudoers.d

EXPOSE 25565

# hook into docker BuildKit --platform support
# see https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope
ARG TARGETOS
ARG TARGETARCH
ARG TARGETVARIANT

ARG EASY_ADD_VER=0.7.1
ADD https://github.com/itzg/easy-add/releases/download/${EASY_ADD_VER}/easy-add_${TARGETOS}_${TARGETARCH}${TARGETVARIANT} /usr/bin/easy-add
RUN chmod +x /usr/bin/easy-add
Expand Down Expand Up @@ -52,11 +52,6 @@ RUN curl -fsSL ${MC_HELPER_BASE_URL}/mc-image-helper-${MC_HELPER_VERSION}.tgz \
| tar -C /usr/share -zxf - \
&& ln -s /usr/share/mc-image-helper-${MC_HELPER_VERSION}/bin/mc-image-helper /usr/bin

# Install modified knockd
ADD https://github.com/Metalcape/knock/releases/download/0.8.1/knock-0.8.1-${TARGETARCH}${TARGETVARIANT}.tar.gz /tmp/knock.tar.gz
RUN tar -xf /tmp/knock.tar.gz -C /usr/local/ && rm /tmp/knock.tar.gz
RUN find /usr/lib -name 'libpcap.so.0.8' -execdir cp '{}' libpcap.so.1 \;

VOLUME ["/data"]
WORKDIR /data

Expand Down
5 changes: 5 additions & 0 deletions build/alpine/install-packages.sh
Expand Up @@ -25,3 +25,8 @@ apk add --no-cache -U \
zstd \
nfs-utils \
libpcap

# Patched knockd
curl -o /tmp/knock.tar.gz https://github.com/Metalcape/knock/releases/download/0.8.1/knock-0.8.1-alpine-amd64.tar.gz
tar -xf /tmp/knock.tar.gz -C /usr/local/ && rm /tmp/knock.tar.gz
ln -s /usr/local/sbin/knockd /usr/sbin/knockd
7 changes: 7 additions & 0 deletions build/ol/install-packages.sh
@@ -1,5 +1,7 @@
#!/bin/bash

export TARGET

set -e

microdnf install dnf -y
Expand Down Expand Up @@ -36,3 +38,8 @@ dnf install -y ImageMagick \
libpcap

bash /build/ol/install-gosu.sh

# Patched knockd
curl -o /tmp/knock.tar.gz https://github.com/Metalcape/knock/releases/download/0.8.1/knock-0.8.1-$TARGET.tar.gz
tar -xf /tmp/knock.tar.gz -C /usr/local/ && rm /tmp/knock.tar.gz
ln -s /usr/local/sbin/knockd /usr/sbin/knockd
8 changes: 8 additions & 0 deletions build/ubuntu/install-packages.sh
@@ -1,5 +1,7 @@
#!/bin/sh

export TARGET

set -e

apt-get update
Expand Down Expand Up @@ -27,3 +29,9 @@ apt-get install -y \
libpcap0.8

apt-get clean

# Patched knockd
curl -o /tmp/knock.tar.gz https://github.com/Metalcape/knock/releases/download/0.8.1/knock-0.8.1-$TARGET.tar.gz
tar -xf /tmp/knock.tar.gz -C /usr/local/ && rm /tmp/knock.tar.gz
ln -s /usr/local/sbin/knockd /usr/sbin/knockd
find /usr/lib -name 'libpcap.so.0.8' -execdir cp '{}' libpcap.so.1 \;

0 comments on commit e7084c2

Please sign in to comment.