まずは、サンプルプロジェクトを作成します。 $ mkdir sample_pj $ cd ~/sample_pj 次にDockerfileを作成していきます。 $ touch Dockerfile FROM ruby:2.7.0 RUN apt update -y && apt install curl RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - RUN apt-get install -y nodejs RUN npm install -g yarn…