You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
691 B
26 lines
691 B
FROM openjdk:8-jdk-alpine
|
|
|
|
LABEL author="ViViV_" maintainer="sysadmin@whiteshield.ch"
|
|
LABEL author="thehuntedpie" maintainer="thehuntedpie@gmail.com"
|
|
|
|
EXPOSE 6567/TCP
|
|
EXPOSE 6567/UDP
|
|
|
|
RUN apk add --update --no-cache curl ca-certificates openssl git \
|
|
tar bash
|
|
RUN apk add --update --no-cache sqlite
|
|
|
|
RUN adduser -D -h /var/lib/mindustry mindustry
|
|
|
|
COPY Mindustry-server-4.0-alpha-56.jar /usr/local/share/mindustry/server.jar
|
|
|
|
USER root
|
|
|
|
WORKDIR /var/lib/mindustry
|
|
|
|
VOLUME /var/lib/mindustry/.mindustry
|
|
|
|
COPY ./docker-entrypoint.sh /
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
CMD ["host"]
|