Remove chmod from Dockerfile

Apparently, GitHub Actions disallows the use of `chmod` in this case.
This commit is contained in:
eikendev 2020-03-31 19:52:04 +02:00
parent 234f9d8989
commit 21dbc832c5

View file

@ -2,6 +2,4 @@ FROM curlimages/curl:latest
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["/entrypoint.sh"]