diff options
author | terminaldweller <thabogre@gmail.com> | 2021-02-23 10:01:14 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-02-23 10:01:14 +0000 |
commit | c2b3c437772df57162385555933aac440308b31c (patch) | |
tree | ee0160dad06e1cf4e331d88836e1aae8be05721d /Dockerfile | |
parent | forgot to add the parser... (diff) | |
download | hived-c2b3c437772df57162385555933aac440308b31c.tar.gz hived-c2b3c437772df57162385555933aac440308b31c.zip |
removed the expression parser. using a lib now. the addalert endpoint is working. alert messages about fullfilment in tg now. using redis as db to keep the alerts in.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,8 @@ FROM alpine:3.13 as builder RUN apk update && apk upgrade RUN apk add go git -RUN go get -u github.com/go-telegram-bot-api/telegram-bot-api +COPY ./go.* /hived/ +RUN cd /hived && go mod download COPY *.go /hived/ RUN cd /hived && go build |