Browse Source

chmod +x for .sh files

main
Daniel Gibbs 3 weeks ago
parent
commit
187f6f3bb3
  1. 3
      Dockerfile.ubuntu-2404

3
Dockerfile.ubuntu-2404

@ -138,6 +138,9 @@ COPY entrypoint.sh /app/entrypoint.sh
COPY entrypoint-user.sh /app/entrypoint-user.sh
COPY entrypoint-healthcheck.sh /app/entrypoint-healthcheck.sh
## Ensure entrypoint scripts have execute permissions
RUN chmod +x /app/entrypoint.sh /app/entrypoint-user.sh /app/entrypoint-healthcheck.sh
RUN date > /build-time.txt
ENTRYPOINT ["/bin/bash", "./entrypoint.sh"]

Loading…
Cancel
Save