Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit 636c7fc

Browse files
author
Antonio Cheong
committed
finial fixing
1 parent feeb3b7 commit 636c7fc

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.github/workflows/buildx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id: prepare
1818
run: |
1919
DOCKER_IMAGE=windoac/nginx-npm
20-
DOCKER_PLATFORMS=linux/arm64
20+
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64/v8
2121
VERSION=edge
2222
2323
if [[ $GITHUB_REF == refs/tags/* ]]; then

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
FROM nginx:latest
22

3-
WORKDIR /
4-
53
COPY rootfs/ /
64

75
RUN mkdir -p /tmp/nginx/body /var/lib/nginx/cache /data/logs \
86
&& mkdir -p /etc/letsencrypt/live/placeholder /data/nginx/placeholder /data/custom_ssl/placeholder \
97
&& find /etc/nginx -type d -exec chmod 755 {} \; \
108
&& find /etc/nginx -type f -exec chmod 644 {} \; \
11-
&& chmod 755 /docker-entrypoint.d/99-dynamic_resolvers.sh /bin/nginx_auto_reload.sh
9+
&& chmod 755 /docker-entrypoint.d/99-dynamic_resolvers.sh /scripts/nginx_auto_reload.sh

rootfs/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fi
5252

5353
trap _exitpoint TERM EXIT INT
5454

55-
nginx_auto_reload.sh &
55+
/scripts/nginx_auto_reload.sh &
5656
child=$!
5757

5858
exec "$@"
File renamed without changes.

0 commit comments

Comments
 (0)