rename gen/requirements.py to requirements.txt, add git/bash to Docker deps and fix typos in README

This commit is contained in:
bunkerity
2021-07-11 17:58:35 +02:00
parent ecf30a71f7
commit 010c0fd6d4
4 changed files with 9 additions and 8 deletions

View File

@@ -1,7 +1,8 @@
FROM nginx:1.20.1-alpine
COPY helpers/install.sh /tmp/install.sh
RUN chmod +x /tmp/install.sh && \
RUN apk --no-cache add bash && \
chmod +x /tmp/install.sh && \
/tmp/install.sh && \
rm -f /tmp/install.sh