mirror of
https://github.com/barkeser2002/mcsleepingserverstarter.git
synced 2026-09-25 13:36:05 +03:00
9 lines
319 B
Docker
9 lines
319 B
Docker
FROM eclipse-temurin:17-jre-jammy
|
|
|
|
# Will copy either "mcsleepingserverstarter-linux/amd64" or "mcsleepingserverstarter-linux/arm64"
|
|
# depending on what architecture this image is for
|
|
ARG TARGETPLATFORM
|
|
COPY --chmod=755 "./mcsleepingserverstarter-$TARGETPLATFORM" /mcsleepingserverstarter
|
|
|
|
CMD /mcsleepingserverstarter
|