diff options
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 |