fix: added COPY for docker entrypoint
Some checks failed
Gitea/docker-base-images/nginx-routes/pipeline/head There was a failure building this commit

This commit is contained in:
amorozov 2023-09-02 00:10:10 +03:00
parent 61e21e1016
commit b1fe1efef4

View File

@ -11,5 +11,9 @@ RUN apt update && \
apt install iproute2 && \
apt install iputils-ping
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod +x /usr/local/bin/docker-entrypoint.sh && \
ln -s /usr/local/bin/docker-entrypoint.sh /
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "app" ]