set path to app.sh explicit

This commit is contained in:
Michael Grote 2023-11-08 16:12:29 +01:00
parent 994cbbdbfc
commit db7d44818d

View file

@ -15,7 +15,7 @@ COPY app.sh /app/app.sh
WORKDIR /app WORKDIR /app
# Make the script executable # Make the script executable
RUN chmod +x app.sh RUN chmod +x /app/app.sh
# Set the entrypoint to execute the script # Set the entrypoint to execute the script
ENTRYPOINT ["/app/app.sh"] ENTRYPOINT ["/app/app.sh"]