Skip to content

Commit c31d27a

Browse files
committed
Fix missing directory after switching to homeassistant base builder
1 parent 0abd08f commit c31d27a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
args: |
2828
--test \
29-
--amd64 \
29+
--all \
3030
--target modsecurity/
3131
3232
# - name: Test build

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
uses: home-assistant/builder@master
2121
with:
2222
args: |
23-
--aarch64 \
23+
--all \
2424
--target modsecurity/ \
2525
--docker-hub jhampdbre

modsecurity/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ RUN echo 'Installing Nginx Modules' && \
5959
--add-dynamic-module=../ModSecurity-nginx && \
6060
make modules \
6161
) && \
62+
mkdir -p /usr/lib/nginx/modules && \
6263
cp /opt/nginx-${NGINX_VERSION}/objs/ngx_http_modsecurity_module.so \
6364
/usr/lib/nginx/modules/ && \
6465
rm -fr /opt/* && \

0 commit comments

Comments
 (0)