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.
19 lines
509 B
19 lines
509 B
FROM openjdk:8-jdk-alpine
|
|
|
|
LABEL author="ViViV_" maintainer="sysadmin@whiteshield.ch"
|
|
|
|
EXPOSE 6567/TCP
|
|
EXPOSE 6567/UDP
|
|
|
|
RUN apk add --update --no-cache curl ca-certificates openssl git tar bash sqlite \
|
|
&& adduser -D -h /home/container container
|
|
|
|
ADD . /home/container/
|
|
USER container
|
|
ENV USER=container HOME=/home/container
|
|
|
|
WORKDIR /home/container
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
|
|
CMD ["/bin/bash", "/entrypoint.sh"]
|