grim/hgkeeper

clean up a ton of logging

2019-09-10, Gary Kramlich
ea4d0c4e0f66
clean up a ton of logging
FROM golang:stretch as build
WORKDIR /root
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static" -s' .
FROM debian:stretch-slim
RUN set -ex && \
apt-get update && \
apt-get install -y --no-install-recommends mercurial && \
apt-get clean && \
rm -rf /var/lib/apt/lists
COPY --from=build /root/hgkeeper /usr/local/bin/hgkeeper
CMD ["hgkeeper", "serve"]