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

master release-0.0.2
amorozov 2023-09-02 00:10:10 +03:00
parent 61e21e1016
commit b1fe1efef4
1 changed files with 4 additions and 0 deletions

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" ]