This commit is contained in:
Sebastien 2018-03-01 15:16:40 +01:00
parent 66668a1378
commit ae0f63b55a

View File

@ -1,13 +1,13 @@
FROM debian:latest FROM debian:latest
ARG BUILD_NBR=$BUILD_NBR ARG BUILD_NBR=${BUILD_NUMBER}
ARG BRANCH_NAME=$BRANCH_NAME ARG BRANCH_NAME=${BRANCH_NAME}
RUN apt-get update RUN apt-get update
RUN apt-get -y upgrade RUN apt-get -y upgrade
RUN apt-get -y install openjdk-8-jre openjdk-8-jdk curl wget RUN apt-get -y install openjdk-8-jre openjdk-8-jdk curl wget
WORKDIR /bot_src WORKDIR /bot_src
ADD DownloadLast.sh ${BRANCH_NAME} ${BUILD_NBR} /bot_src/ ADD DownloadLast.sh /bot_src/
RUN chmod +x DownloadLast.sh RUN chmod +x DownloadLast.sh
RUN ./DownloadLast.sh RUN ./DownloadLast.sh ${BRANCH_NAME} ${BUILD_NBR}
ENV PORT=8080 ENV PORT=8080
ENV TOKEN=10 ENV TOKEN=10
CMD java -jar bot.jar -t ${TOKEN} CMD java -jar bot.jar -t ${TOKEN}