Skip to content
This repository was archived by the owner on May 28, 2024. It is now read-only.

Commit 437f844

Browse files
committed
Bug fix (mkdir /usr/local/lib/lua & /usr/local/share/lua)
``` mkdir: cannot create directory '/usr/local/share/lua': No such file or directory mkdir: cannot create directory '/usr/local/lib/lua': No such file or directory Makefile:58: recipe for target 'install' failed make: *** [install] Error 1 ```
1 parent f65c803 commit 437f844

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

haproxy_debian_builder.Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ WORKDIR $dockerfile_workdir
88
RUN curl --retry 5 --retry-delay 10 --retry-max-time 60 -fsSL "https://www.lua.org/ftp/lua-${lua_version}.tar.gz" | bsdtar -xf- --strip-components 1 --no-xattrs \
99
&& sed -i -E 's!MYCFLAGS=.*!MYCFLAGS='"$CFLAGS"' -fPIE -Wl,-pie!' src/Makefile \
1010
&& make all test \
11+
&& mkdir -p /usr/local/lib/lua \
12+
&& mkdir -p /usr/local/share/lua \
1113
&& checkinstall -y --nodoc --pkgversion="$lua_version" \
1214
&& rm -rf -- "$dockerfile_workdir"
1315

0 commit comments

Comments
 (0)