Skip to content

Instantly share code, notes, and snippets.

@skaji
Created October 18, 2019 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skaji/441b436c8d5c0632c988c27fffd031c6 to your computer and use it in GitHub Desktop.
Save skaji/441b436c8d5c0632c988c27fffd031c6 to your computer and use it in GitHub Desktop.
❯ docker build .
Sending build context to Docker daemon 2.56kB
Step 1/15 : FROM ubuntu:18.04
---> 4c108a37151f
Step 2/15 : ENV DEBIAN_FRONTEND=noninteractive
---> Using cache
---> ed488244a498
Step 3/15 : RUN apt-get update -qq && apt-get install -y git curl libssl-dev
---> Using cache
---> 2c4b7bc6eff3
Step 4/15 : RUN apt-get install -y libpq-dev build-essential
---> Using cache
---> f2d709dc440b
Step 5/15 : RUN apt-get install -y libxml2-dev libxslt1-dev
---> Using cache
---> c378a2f79134
Step 6/15 : RUN apt-get install -y tzdata libncurses5-dev libncursesw5-dev libreadline-dev zlib1g-dev libexpat1-dev xmlsec1
---> Using cache
---> 43e3803a6d20
Step 7/15 : RUN useradd -ms /bin/bash developer
---> Using cache
---> 29a023c385c0
Step 8/15 : USER developer
---> Using cache
---> 7ed0bb32e730
Step 9/15 : WORKDIR /home/developer
---> Using cache
---> 4b7b5d21816b
Step 10/15 : ENV PLENV_ROOT /home/developer/.plenv
---> Using cache
---> 67664395de63
Step 11/15 : ENV PATH $PLENV_ROOT/bin:$PLENV_ROOT/shims:$PATH
---> Using cache
---> b10836f1f485
Step 12/15 : RUN git clone git://github.com/tokuhirom/plenv.git $PLENV_ROOT && git clone git://github.com/tokuhirom/Perl-Build.git $PLENV_ROOT/plugins/perl-build && git clone git://github.com/miyagawa/plenv-contrib.git $PLENV_ROOT/plugins/plenv-contrib
---> Using cache
---> 168370e2054d
Step 13/15 : RUN echo 'eval "$(plenv init -)"' >> ~/.profile
---> Using cache
---> 5845b9886118
Step 14/15 : RUN echo no cache 1
---> Running in 8d81fb9a1e3b
no cache 1
Removing intermediate container 8d81fb9a1e3b
---> 84af5e5c851f
Step 15/15 : RUN plenv install 5.28.2 && plenv rehash
---> Running in 6cdd55734c9e
Installing 5.28.2 as 5.28.2
/usr/bin/perl -- /home/developer/.plenv/plugins/perl-build/bin/perl-build --symlink-devel-executables --build-dir /home/developer/.plenv/build/1571437601.6/ --tarball-dir /home/developer/.plenv/cache/ -Dversiononly 5.28.2 /home/developer/.plenv/versions/5.28.2
Fetching 5.28.2 as /home/developer/.plenv/cache/perl-5.28.2.tar.gz (https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.28.2.tar.gz)
Downloaded https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.28.2.tar.gz to /home/developer/.plenv/cache/perl-5.28.2.tar.gz.
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment