Skip to content

Commit

Permalink
Add execute bit to /docker-entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
botder committed May 22, 2023
1 parent 22314a4 commit 2ab82f7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ WORKDIR /build

# Copy entrypoint script
COPY utils/docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh

# Add GLIB compat
COPY utils/compat /compat
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ WORKDIR /build

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

# Set entrypoint
ENTRYPOINT bash /docker-entrypoint.sh
1 change: 1 addition & 0 deletions Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ WORKDIR /build

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

# Set entrypoint
ENTRYPOINT bash /docker-entrypoint.sh
1 change: 1 addition & 0 deletions Dockerfile.i386
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ WORKDIR /build

# Copy entrypoint script
COPY utils/docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh

# Add GLIB compat
COPY utils/compat /compat
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.osx-arm64
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ WORKDIR /build

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

# Set entrypoint
ENTRYPOINT /docker-entrypoint.sh
1 change: 1 addition & 0 deletions Dockerfile.osx-x64
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ WORKDIR /build

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

# Set entrypoint
ENTRYPOINT /docker-entrypoint.sh

0 comments on commit 2ab82f7

Please sign in to comment.