### Replace ARTIFACT_REPOSITORY with the actual path to the Build location where the vFunction artifacts are stored FROM almalinux:9 RUN adduser -l -u "1500" "appuser" COPY ARTIFACT_REPOSITORY/vfunction/startup-controller.sh /usr/bin/startup-controller.sh RUN chmod +x /usr/bin/startup-controller.sh && \    chmod -R 777 /usr/bin/ USER 1500 ENTRYPOINT["/bin/sh"] CMD["/usr/bin/startup-controller.sh"]