From 547491843171b6329a1064a506801e8e79e130de Mon Sep 17 00:00:00 2001 From: Michael McVady Date: Mon, 16 May 2022 14:05:05 -0500 Subject: Upgrade to kore-4.2.2 --- Dockerfile | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 36aa6f6..e5699ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,10 @@ FROM debian:bullseye-slim -MAINTAINER Michael McVady +LABEL maintainer="Michael McVady " -# RUN set -e \ -# && apk add --no-cache \ -# busybox-extras \ -# libpq - -# COPY . /clog +COPY . /clog -ARG KORE_VERSION=4.2.1 +ARG KORE_VERSION=4.2.2 RUN set -e \ && mkdir -p /var/chroot \ @@ -17,18 +12,12 @@ RUN set -e \ && adduser --disabled-password --uid 502 --home /var/chroot/kore --shell /sbin/nologin --ingroup kore kore \ && apt-get update -qq \ && apt-get install -y \ -# linux-headers \ -# bsd-compat-headers \ curl \ gcc \ make \ pkg-config \ libssl-dev \ - libpq-dev - -COPY . /clog - -RUN set -e \ + 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} \ @@ -40,7 +29,6 @@ RUN set -e \ && cd /clog \ && cp -r assets /var/chroot/kore/. \ && kodev build -# && apk del .build-deps EXPOSE 8888 STOPSIGNAL SIGQUIT -- cgit v1.2.3