forked from PhantomBotDE/PhantomBotDE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
87 lines (73 loc) · 3.17 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#
# Copyright (C) 2016-2020 phantom.bot
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Build container
FROM adoptopenjdk:11-jdk-hotspot-bionic as builder
ARG PROJECT_NAME=PhantomBotDE
ARG BASEDIR=/opt/${PROJECT_NAME}
ARG BUILDDIR=${BASEDIR}_build
ARG DATADIR=${BASEDIR}_data
ARG ANT_ARGS=
ENV DEBIAN_FRONTEND=noninteractive
RUN mkdir -p "${BUILDDIR}" \
&& apt-get update -q \
&& apt-get install -yqq ant \
&& apt-get clean \
&& rm -rf \
/var/lib/apt/lists/* \
/tmp/* \
/var/tmp/*
COPY . "${BUILDDIR}"
RUN cd "${BUILDDIR}" \
&& ant -noinput -buildfile build.xml ${ANT_ARGS} jar
# Application container
FROM adoptopenjdk:11-jre-hotspot-bionic
ARG PROJECT_NAME=PhantomBotDE
ARG PROJECT_VERSION
ARG BASEDIR=/opt/${PROJECT_NAME}
ARG BUILDDIR=${BASEDIR}_build
ARG DATADIR=${BASEDIR}_data
ARG TARGETPLATFORM
RUN mkdir -p "${BASEDIR}" "${DATADIR}" "${BASEDIR}/logs"
COPY --from=builder "${BUILDDIR}/dist/${PROJECT_NAME}-${PROJECT_VERSION}/." "${BASEDIR}/"
RUN cd "${BASEDIR}" \
&& rm -rf \
&& if [ "${TARGETPLATFORM}" = "linux/arm/v7" ] ; then rm -rf ${BASEDIR}/java-runtime ${BASEDIR}/java-runtime-macos ${BASEDIR}/java-runtime-linux ${BASEDIR}/launch.bat ; fi \
&& if [ "${TARGETPLATFORM}" = "linux/arm64" ] ; then rm -rf ${BASEDIR}/java-runtime ${BASEDIR}/java-runtime-macos ${BASEDIR}/java-runtime-linux ${BASEDIR}/launch.bat ; fi \
&& if [ "${TARGETPLATFORM}" = "linux/amd64" ] ; then rm -rf ${BASEDIR}/java-runtime ${BASEDIR}/java-runtime-macos ${BASEDIR}/launch.bat ; fi \
&& mkdir "${DATADIR}/scripts" \
&& mkdir "${DATADIR}/scripts/custom" \
&& mkdir "${DATADIR}/scripts/discord" \
&& mkdir "${DATADIR}/scripts/lang" \
&& mv "${BASEDIR}/addons" "${DATADIR}/" \
&& mv "${BASEDIR}/config" "${DATADIR}/" \
&& mv "${BASEDIR}/logs" "${DATADIR}/" \
&& mv "${BASEDIR}/scripts/custom" "${DATADIR}/scripts/custom/" \
&& mv "${BASEDIR}/scripts/discord/custom" "${DATADIR}/scripts/discord/" \
&& mv "${BASEDIR}/scripts/lang/custom" "${DATADIR}/scripts/lang/" \
&& mkdir "${DATADIR}/dbbackup" \
&& ln -s "${DATADIR}/addons" \
&& ln -s "${DATADIR}/config" \
&& ln -s "${DATADIR}/dbbackup" \
&& ln -s "${DATADIR}/logs" \
&& ln -s "${DATADIR}/scripts/custom" "${BASEDIR}/scripts/custom" \
&& ln -s "${DATADIR}/scripts/discord" "${BASEDIR}/scripts/discord/custom" \
&& ln -s "${DATADIR}/scripts/lang" "${BASEDIR}/scripts/lang/custom" \
&& if [ "${TARGETPLATFORM}" = "linux/amd64" ] ; then chmod u+x ./java-runtime-linux/bin/java ; fi
VOLUME "${DATADIR}"
WORKDIR "${BASEDIR}"
EXPOSE 25000
CMD ["bash", "launch-service.sh"]