No valid url specified error for repository-s3 plugin download in 1.3.15 version

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):

opensearch-dashboard 1.3.15
Platform: k8s

Describe the issue:

FROM opensearchproject/opensearch-dashboards:1.3.15

RUN bin/opensearch-dashboards-plugin install  repository-s3

The command is not working.
Getting exception when I execute the command by exec inside the opensearch-dashboard pod =

opensearch-dashboards@gmsp-es-logging-dashboards-7d4f787c47-dnpzv bin]$ opensearch-dashboards-plugin install repository-s3
Found previous install attempt. Deleting…
Attempting to transfer from repository-s3
Attempting to transfer from https://ci.opensearch.org/ci/dbc/distribution-build-opensearch-dashboards/1.3.15/latest/linux/x64/tar/builds/opensearch-dashboards/plugins/repository-s3-1.3.15.zip
Plugin installation was unsuccessful due to error “No valid url specified.”

Configuration:

Dockerfile to repackage the plugins in opensearch-dashboard 1.3.15 image =

FROM opensearchproject/opensearch-dashboards:1.3.15

RUN bin/opensearch-dashboards-plugin install --batch repository-s3
RUN bin/opensearch-plugin install --batch https://github.com/aiven/prometheus-exporter-plugin-for-opensearch/releases/download/1.3.15.0/prometheus-exporter-1.3.15.0.zip

Relevant Logs or Screenshots:

opensearch-dashboards@gmsp-es-logging-dashboards-7d4f787c47-dnpzv bin]$ opensearch-dashboards-plugin install repository-s3
Found previous install attempt. Deleting…
Attempting to transfer from repository-s3
Attempting to transfer from https://ci.opensearch.org/ci/dbc/distribution-build-opensearch-dashboards/1.3.15/latest/linux/x64/tar/builds/opensearch-dashboards/plugins/repository-s3-1.3.15.zip
Plugin installation was unsuccessful due to error “No valid url specified.”

@abhyankar The repository-s3 plugin is designed for OpenSearch instead of OpenSearch Dashboards. You should create a Docker file for OpenSearch nodes.

Understood thanks.