This is an automated email from the ASF dual-hosted git repository.
qianzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new b54ff0f1d Removed `-k` option when installing Ruby
b54ff0f1d is described below
commit b54ff0f1d181c03bbf68009d80499d9f184584b6
Author: Qian Zhang <[email protected]>
AuthorDate: Wed Mar 20 10:50:25 2024 +0800
Removed `-k` option when installing Ruby
---
support/mesos-website/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/support/mesos-website/Dockerfile b/support/mesos-website/Dockerfile
index 617883e0c..2ffed3cc9 100644
--- a/support/mesos-website/Dockerfile
+++ b/support/mesos-website/Dockerfile
@@ -20,7 +20,7 @@ RUN apt-get update && \
# Install ruby version manager to get a more updated ruby version
RUN curl -sSL https://rvm.io/mpapis.asc | gpg --import - && \
curl -sSL https://rvm.io/pkuczynski.asc | gpg --import - && \
- curl -k -sSL https://get.rvm.io | bash -s stable --ruby=2.6.6
+ curl -sSL https://get.rvm.io | bash -s stable --ruby=2.6.6
ENV PATH=/usr/local/rvm/rubies/ruby-2.6.6/bin:$PATH