Skip to content

Commit 2ab82f7

Browse files
committed
Add execute bit to /docker-entrypoint.sh
1 parent 22314a4 commit 2ab82f7

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ WORKDIR /build
2020

2121
# Copy entrypoint script
2222
COPY utils/docker-entrypoint.sh /docker-entrypoint.sh
23+
RUN chmod +x /docker-entrypoint.sh
2324

2425
# Add GLIB compat
2526
COPY utils/compat /compat

Dockerfile.arm64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ WORKDIR /build
2929

3030
# Copy entrypoint script
3131
COPY utils/docker-entrypoint-arm.sh /docker-entrypoint.sh
32+
RUN chmod +x /docker-entrypoint.sh
3233

3334
# Set entrypoint
3435
ENTRYPOINT bash /docker-entrypoint.sh

Dockerfile.armhf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ WORKDIR /build
2929

3030
# Copy entrypoint script
3131
COPY utils/docker-entrypoint-arm.sh /docker-entrypoint.sh
32+
RUN chmod +x /docker-entrypoint.sh
3233

3334
# Set entrypoint
3435
ENTRYPOINT bash /docker-entrypoint.sh

Dockerfile.i386

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ WORKDIR /build
2020

2121
# Copy entrypoint script
2222
COPY utils/docker-entrypoint.sh /docker-entrypoint.sh
23+
RUN chmod +x /docker-entrypoint.sh
2324

2425
# Add GLIB compat
2526
COPY utils/compat /compat

Dockerfile.osx-arm64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ WORKDIR /build
3434

3535
# Copy entrypoint script
3636
COPY utils/docker-entrypoint-osx.sh /docker-entrypoint.sh
37+
RUN chmod +x /docker-entrypoint.sh
3738

3839
# Set entrypoint
3940
ENTRYPOINT /docker-entrypoint.sh

Dockerfile.osx-x64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ WORKDIR /build
3434

3535
# Copy entrypoint script
3636
COPY utils/docker-entrypoint-osx.sh /docker-entrypoint.sh
37+
RUN chmod +x /docker-entrypoint.sh
3738

3839
# Set entrypoint
3940
ENTRYPOINT /docker-entrypoint.sh

0 commit comments

Comments
 (0)