Skip to content

Commit 8b92e46

Browse files
committedDec 14, 2023
Update Permission Denied Run Shell Installation
1 parent 2027be0 commit 8b92e46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ COPY --from=nodejs /usr/local /usr/local
2020
EXPOSE 80 443
2121

2222
# Script Installation
23-
COPY run.sh /run.sh
24-
RUN chmod a+x /run.sh
23+
COPY run.sh /usr/local/run.sh
24+
RUN chmod a+x /usr/local/run.sh
2525

2626
# Run Script
27-
CMD ["/run.sh"]
27+
CMD ["/usr/local/run.sh"]
2828

2929
# Configure a healthcheck to validate that everything is up&running
3030
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1

0 commit comments

Comments
 (0)