entrypoint doesn't find out script when its exist in container
Hi! I use gitlab 12.1.4-ee (4ea82400). Runner: 12.1.0 .
Today I faced with problem in my pipeline wich I didn't run 1 mounth. Code
version: "3"
services:
ssh:
image: alpine:latest
expose:
- 3366
- 3367
- 3368
- 3369
restart: unless-stopped
volumes:
- ./keys:/srv/keys:ro
- ./scripts:/srv/scripts:ro
entrypoint:
- /srv/scripts/entrypoint.ssh.sh
I use docker runner. And during launch my pipeline by docker-compose I get error:
"exec: \"/srv/scripts/entrypoint.ssh.sh\": stat /srv/scripts/entrypoint.ssh.sh: no such file or directory": unknown
but if I launch this code on my PC, code is working without issue. And one month ago I worked without issue, but in this time I updated my gitlab. I alwayse follow to the new version. For test I added to docker compose file fild command: ls -ltr /usr/scripts and I saw my script in output log.