add TERM env var to Dockerfile

This commit is contained in:
Bradley Cicenas 2018-06-28 11:19:07 +00:00
parent a2c08d312e
commit b83402b886
1 changed files with 1 additions and 0 deletions

View File

@ -12,5 +12,6 @@ RUN make build && \
mv -v ctop /go/bin/
FROM scratch
ENV TERM=linux
COPY --from=0 /go/bin/ctop /ctop
ENTRYPOINT ["/ctop"]