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
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
4 changed files with 9 additions and 8 deletions

View File

@ -1,7 +1,8 @@
FROM nginx:1.20.1-alpine FROM nginx:1.20.1-alpine
COPY helpers/install.sh /tmp/install.sh 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 && \ /tmp/install.sh && \
rm -f /tmp/install.sh rm -f /tmp/install.sh

View File

@ -14,13 +14,13 @@
<p align="center"> <p align="center">
<strong> <strong>
<a href="https://bunkerized-nginx.readthedocs.io">Documentation</a> <a href="https://bunkerized-nginx.readthedocs.io">Documentation</a>
<span> | </span> &#124;
<a href="https://github.com/bunkerity/bunkerized-nginx/tree/master/examples">Examples</a> <a href="https://github.com/bunkerity/bunkerized-nginx/tree/master/examples">Examples</a>
<span> | </span> &#124;
<a href="https://www.bunkerity.com/category/bunkerized-nginx/">Blog posts</a> <a href="https://www.bunkerity.com/category/bunkerized-nginx/">Blog posts</a>
<span> | </span> &#124;
<a href="https://coso.me/bunkerity-chat">Community chat</a> <a href="https://coso.me/bunkerity-chat">Community chat</a>
<span> | </span> &#124;
<a href="https://coso.me/bunkerity">Follow us</a> <a href="https://coso.me/bunkerity">Follow us</a>
</strong> </strong>
</p> </p>
@ -432,8 +432,8 @@ bunkerized-nginx comes with a set of predefined security settings that you can (
# License # License
This project is licensed under the terms of the [GNU Affero General Public License (AGPL) version 3](https://github.com/bunkerity/bunkerized-nginx/LICENSE.md). This project is licensed under the terms of the [GNU Affero General Public License (AGPL) version 3](https://github.com/bunkerity/bunkerized-nginx/blob/master/LICENSE.md).
# Contributing # Contributing
If you would like to contribute to the project you can read the [contributing guidelines](https://github.com/bunkerity/bunkerized-nginx/CONTRIBUTING.md) to get started. If you would like to contribute to the project you can read the [contributing guidelines](https://github.com/bunkerity/bunkerized-nginx/blob/master/CONTRIBUTING.md) to get started.

View File

@ -596,7 +596,7 @@ elif [ "$OS" = "centos" ] ; then
CENTOS_DEPS="git crontabs curl python3 python3-pip procps" CENTOS_DEPS="git crontabs curl python3 python3-pip procps"
do_and_check_cmd yum install -y $CENTOS_DEPS do_and_check_cmd yum install -y $CENTOS_DEPS
elif [ "$OS" = "alpine" ] ; then elif [ "$OS" = "alpine" ] ; then
ALPINE_DEPS="certbot bash libmaxminddb libgcc lua yajl libstdc++ openssl py3-pip" ALPINE_DEPS="certbot bash libmaxminddb libgcc lua yajl libstdc++ openssl py3-pip git"
do_and_check_cmd apk add --no-cache $ALPINE_DEPS do_and_check_cmd apk add --no-cache $ALPINE_DEPS
fi fi