From ec1c6195bb7d9dd9633da851afef26d897823dbb Mon Sep 17 00:00:00 2001 From: Nikolas Nyby Date: Thu, 31 Jan 2019 12:58:47 -0500 Subject: [PATCH] Remove go-wrapper This isn't around in the go 1.10 docker container. See: https://github.com/docker-library/golang/pull/205 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07e77fb..4416b59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,11 @@ FROM golang:1.10 WORKDIR /go/src/app COPY . . -RUN go-wrapper install ENV HOUND_HTTP_PORT=9998 ENV HOUND_TEMPLATE_FILE=/go/src/app/index.html ENV HOUND_SMTP_SERVER=postfix ENV HOUND_SMTP_PORT=25 EXPOSE 9998 -CMD ["go-wrapper", "run", "-config", "/config.json"] +CMD ["go", "run", "-config", "/config.json"]