Some lurarocks deps now require git to exist

This commit is contained in:
Jamie Curnow
2021-11-25 11:14:21 +10:00
parent e012a8a6d7
commit 596bf40a83
+4 -2
View File
@@ -60,7 +60,8 @@ RUN apt-get update \
libssl-dev \
openssl unzip \
wget \
zlib1g-dev
zlib1g-dev \
git
# Lua build
COPY ./scripts/build-lua /tmp/build-lua
@@ -133,11 +134,12 @@ RUN apt-get update \
gcc \
make \
socat \
git \
&& /tmp/install-lua \
&& /tmp/install-openresty \
&& rm -f /tmp/install-lua \
&& rm -f /tmp/install-openresty \
&& apt-get remove -y make gcc \
&& apt-get remove -y make gcc git \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*