mirror of
https://github.com/tomet123/LuckPermsWeb-docker.git
synced 2024-11-28 12:35:37 +01:00
24 lines
1.0 KiB
Docker
24 lines
1.0 KiB
Docker
|
FROM alpine:3.16
|
||
|
|
||
|
# configure supervisord
|
||
|
RUN apk add --update supervisor openjdk17-jdk parallel nginx nodejs npm git && rm -rf /tmp/* /var/cache/apk/*
|
||
|
ADD supervisord.conf /etc/
|
||
|
|
||
|
#configure bytebin
|
||
|
RUN mkdir /opt/bytebin
|
||
|
ADD https://ci.lucko.me/job/bytebin/lastSuccessfulBuild/artifact/target/bytebin.jar /opt/bytebin
|
||
|
ADD services/bytebin/config.json /opt/bytebin/config.json
|
||
|
ADD services/bytebin/bytebin-service.conf /etc/supervisor/conf.d/bytebin-service.conf
|
||
|
|
||
|
#configure nginx
|
||
|
ADD services/nginx/nginx-service.conf /etc/supervisor/conf.d/nginx-service.conf
|
||
|
ADD services/nginx/nginx.conf /etc/nginx/http.d/web.conf
|
||
|
|
||
|
|
||
|
RUN git clone --recursive https://github.com/lucko/LuckPermsWeb.git /opt/LuckPermsWeb && rm -rf /opt/LuckPermsWeb/config.json
|
||
|
ADD services/luckpermsweb/config.json /opt/LuckPermsWeb/config.json
|
||
|
RUN mkdir -p /opt/web && cd /opt/LuckPermsWeb && npm install && npm run build && cp -r dist/* /opt/web && rm -rf /opt/LuckPermsWeb
|
||
|
|
||
|
|
||
|
ENTRYPOINT ["supervisord", "--nodaemon", "--configuration", "/etc/supervisord.conf"]
|