diff options
author | Michael McVady <femtonaut@gmail.com> | 2022-05-16 14:05:05 -0500 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2022-05-16 14:05:05 -0500 |
commit | 547491843171b6329a1064a506801e8e79e130de (patch) | |
tree | 97f05276a7c5d5165bce43178f1c36b7cacce894 /Dockerfile | |
parent | 94623f497e89b6c3ffe082b6c5a831819a8fb6c6 (diff) |
Upgrade to kore-4.2.2
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 20 |
1 files changed, 4 insertions, 16 deletions
@@ -1,15 +1,10 @@ FROM debian:bullseye-slim -MAINTAINER Michael McVady <femtonaut@gmail.com> +LABEL maintainer="Michael McVady <femtonaut@gmail.com>" -# 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 |