aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile20
-rw-r--r--Makefile2
2 files changed, 5 insertions, 17 deletions
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 <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
diff --git a/Makefile b/Makefile
index 2203d0c..aa0928f 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ docker-build:
docker-run:
docker rm -f clog
- docker run --name clog -p 8888:8888 -d clog:latest
+ docker run --name clog -p 8888:8888 -d clog:latest
run:
kodev run