forked from PhantomBot/PhantomBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
70 lines (56 loc) · 1.87 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
#
# Copyright (C) 2016-2018 phantombot.tv
#
# 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 openjdk:8-jdk as builder
ARG PROJECT_NAME=PhantomBot
ARG BASEDIR=/opt/${PROJECT_NAME}
ARG BUILDDIR=${BASEDIR}_build
ARG DATADIR=${BASEDIR}_data
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 jar
# Application container
FROM openjdk:8-jre-alpine
ARG PROJECT_NAME=PhantomBot
ARG BASEDIR=/opt/${PROJECT_NAME}
ARG BUILDDIR=${BASEDIR}_build
ARG DATADIR=${BASEDIR}_data
RUN mkdir -p "${BASEDIR}" "${DATADIR}" "${BASEDIR}/logs"
COPY --from=builder "${BUILDDIR}/dist/build/." "${BASEDIR}/"
RUN cd "${BASEDIR}" \
&& rm -rf \
&& mv "${BASEDIR}/addons" "${DATADIR}/" \
&& mv "${BASEDIR}/logs" "${DATADIR}/" \
&& mv "${BASEDIR}/config" "${DATADIR}/" \
&& mkdir "${DATADIR}/dbbackup" \
&& ln -s "${DATADIR}/addons" \
&& ln -s "${DATADIR}/logs" \
&& ln -s "${DATADIR}/config" \
&& ln -s "${DATADIR}/dbbackup"
VOLUME "${DATADIR}"
WORKDIR "${BASEDIR}"
EXPOSE 25000 25001 25002 25003 25004 25005
CMD ["sh", "launch-service.sh"]