From 8210b38516dc972aa9bc608a340906b51bd2f422 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 6 Jun 2018 16:33:54 -0600 Subject: [PATCH] Add ca-certificates to the docker image This is to ensure that the bot can connect to homeservers behind ssl. Signed-off-by: Travis Ralston --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c5e6d6d..8d4aace 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,7 @@ FROM alpine:3.6 ENV BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=/data/go-neb.db?_busy_timeout=5000 COPY --from=builder /tmp/go-neb/bin/go-neb /go-neb +RUN apk add --no-cache ca-certificates VOLUME /data EXPOSE 4050