Skip to content

Commit 71e7908

Browse files
authored
add .php extension to executable compile script to mollify rcverify (#84)
1 parent 0235f55 commit 71e7908

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

core/php7.3Action/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ WORKDIR /phpAction
8383
COPY --from=builder_source /bin/proxy /bin/proxy_source
8484
COPY --from=builder_release /bin/proxy /bin/proxy_release
8585
RUN mv /bin/proxy_${GO_PROXY_BUILD_FROM} /bin/proxy
86-
ADD compile /bin/compile
86+
ADD compile.php /bin/compile.php
8787
ADD runner.php /bin/runner.php
88-
ENV OW_COMPILER=/bin/compile
88+
ENV OW_COMPILER=/bin/compile.php
8989

9090
ENTRYPOINT [ "/bin/proxy" ]

core/php7.4Action/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ WORKDIR /phpAction
8282
COPY --from=builder_source /bin/proxy /bin/proxy_source
8383
COPY --from=builder_release /bin/proxy /bin/proxy_release
8484
RUN mv /bin/proxy_${GO_PROXY_BUILD_FROM} /bin/proxy
85-
ADD compile /bin/compile
85+
ADD compile.php /bin/compile.php
8686
ADD runner.php /bin/runner.php
87-
ENV OW_COMPILER=/bin/compile
87+
ENV OW_COMPILER=/bin/compile.php
8888

8989
ENTRYPOINT [ "/bin/proxy" ]

0 commit comments

Comments
 (0)