mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-28 05:35:26 +01:00
23 lines
612 B
Docker
23 lines
612 B
Docker
|
FROM alpine
|
||
|
RUN apk add --no-cache openjdk17 netcat-openbsd
|
||
|
|
||
|
# create a simple 'send' command that will allow users
|
||
|
# to run, for example: docker exec <container> send lp info
|
||
|
RUN printf '#!/bin/sh\n\
|
||
|
echo "$@" | nc -N localhost 3000\n' >> /usr/bin/send && chmod 777 /usr/bin/send
|
||
|
|
||
|
# setup user
|
||
|
RUN addgroup -S app && adduser -S -G app app
|
||
|
USER app
|
||
|
|
||
|
# copy jar file into image
|
||
|
WORKDIR /opt/luckperms
|
||
|
COPY LuckPerms-Standalone-*.jar .
|
||
|
RUN mv * luckperms-standalone.jar
|
||
|
|
||
|
# create volume for data directory
|
||
|
RUN mkdir data
|
||
|
VOLUME ["/opt/luckperms/data"]
|
||
|
|
||
|
CMD ["java", "-jar", "luckperms-standalone.jar", "--docker"]
|