1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 13:16:44 +02:00

Install missing gawk needed by ansi2html.sh (#222)

RuntimeError: /app/share/ansi2html.sh: line 38: gawk: command not found
This commit is contained in:
Anatoli Babenia
2020-07-29 14:15:36 +03:00
parent 96cc3f64bd
commit aae40ae3a8
+1 -1
View File
@@ -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"]