From aae40ae3a80670a469562edf09b4ca889aa2bb48 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Wed, 29 Jul 2020 14:15:36 +0300 Subject: [PATCH] Install missing `gawk` needed by ansi2html.sh (#222) RuntimeError: /app/share/ansi2html.sh: line 38: gawk: command not found --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c0a461b..e78be40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,6 @@ RUN mkdir -p /root/.cheat.sh/log/ \ && python3 lib/fetch.py fetch-all # installing server dependencies -RUN apk add --update --no-cache py3-jinja2 py3-flask bash +RUN apk add --update --no-cache py3-jinja2 py3-flask bash gawk ENTRYPOINT ["python3"] CMD ["bin/srv.py"]