From bc0a1db6a44fbdc361c88766aac68e960516db1c Mon Sep 17 00:00:00 2001 From: Mark Beamer Jr Date: Sat, 6 Mar 2021 11:07:57 -0500 Subject: [PATCH] update dockerfile to sentinel for niko --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index fb3be4e..96ba39f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -## Chain Watcher +## Sentinel FROM ubuntu:18.04 LABEL MAINTAINER="beamer" @@ -11,9 +11,9 @@ RUN export DEBIAN_FRONTEND=noninteractive && \ WORKDIR /usr/bin SHELL ["/bin/bash", "-o", "pipefail", "-c"] -COPY ./bin/watcher watcher -RUN chmod +x ./watcher +COPY ./bin/sentinel sentinel +RUN chmod +x ./sentinel EXPOSE 6060 STOPSIGNAL SIGINT -CMD ./watcher +CMD ./sentinel