aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2022-05-24 01:46:21 -0500
committerMichael McVady <femtonaut@gmail.com>2022-05-24 01:46:21 -0500
commitd0128504f7548e64d94479a9d6100a7d9a2dc4e3 (patch)
tree6ab9b388d6353985c46bcce252276a3c4e32567a /Dockerfile
parentcfc8a9e18e3cf4c4b9b53a2c6e978c8624a83628 (diff)
Dockerfile should work
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Dockerfile b/Dockerfile
index 71ce635..48afb29 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,18 +25,18 @@ RUN set -e \
&& make clean \
&& make PGSQL=1 TLS_BACKEND=none \
&& make install \
- && cd ..
-
-RUN set -e \
- && rm -rf /tmp/kore-${KORE_VERSION} \
+ && cd .. \
&& cd /tmp/clog \
&& cp -r assets /var/chroot/kore/. \
&& kodev build \
- && mkidr /clog \
- && cp clog /clog/.
+ && mkdir /clog \
+ && cp clog /clog/. \
+ && cd /tmp \
+ && rm -rf clog \
+ && rm -rf kore-${KORE_VERSION}
EXPOSE 8888
STOPSIGNAL SIGQUIT
WORKDIR /clog
-ENTRYPOINT [ "clog", "-f"]
+ENTRYPOINT [ "./clog", "-f"]