0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Docker ruby:2.3.5 を利用する

Posted at

以下が必要
echo "deb http://archive.debian.org/debian jessie main" > /etc/apt/sources.list

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 \
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?