blob: e5699ab1330dc9cfa1e0eebfcb6934f87b72c495 (
plain)
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
|
FROM debian:bullseye-slim
LABEL maintainer="Michael McVady <femtonaut@gmail.com>"
COPY . /clog
ARG KORE_VERSION=4.2.2
RUN set -e \
&& mkdir -p /var/chroot \
&& addgroup --gid 502 kore \
&& adduser --disabled-password --uid 502 --home /var/chroot/kore --shell /sbin/nologin --ingroup kore kore \
&& apt-get update -qq \
&& apt-get install -y \
curl \
gcc \
make \
pkg-config \
libssl-dev \
libpq-dev \
&& curl https://kore.io/releases/kore-${KORE_VERSION}.tar.gz --output kore-${KORE_VERSION}.tar.gz \
&& tar zfvx kore-${KORE_VERSION}.tar.gz \
&& cd kore-${KORE_VERSION} \
&& make clean \
&& make NOTLS=1 PGSQL=1 \
&& make install \
&& cd .. \
&& rm -rf kore-${KORE_VERSION} \
&& cd /clog \
&& cp -r assets /var/chroot/kore/. \
&& kodev build
EXPOSE 8888
STOPSIGNAL SIGQUIT
WORKDIR /clog
ENTRYPOINT [ "kore", "-c", "conf/clog.conf", "-f"]
|