使用 Docker ruby:2.3.5
以下是必需的代码:
在/etc/apt/sources.list中添加以下行:echo “deb http://archive.debian.org/debian jessie main”
FROM ruby:2.3.5-slim-jessie
# パッケージインストール
RUN echo "deb http://archive.debian.org/debian jessie main" > /etc/apt/sources.list \
&& apt-get --yes --force-yes update \
&& apt-get --yes --force-yes install \
build-essential \