Skip to content

Instantly share code, notes, and snippets.

@sky-joker
Created November 11, 2018 14:01
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 sky-joker/816e3d49d6166fb2d3edb08c212318cc to your computer and use it in GitHub Desktop.
Save sky-joker/816e3d49d6166fb2d3edb08c212318cc to your computer and use it in GitHub Desktop.
asciinemaのコンテナをビルドするDokerfile
From centos:centos7
RUN localedef -f UTF-8 -i ja_JP ja_JP.UTF-8
ENV LANG="ja_JP.UTF-8" \
LANGUAGE="ja_JP:ja" \
LC_ALL="ja_JP.UTF-8"
RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
RUN yum -y install epel-release
RUN yum -y install python36 && \
curl -L https://bootstrap.pypa.io/get-pip.py | python36 && \
pip3 install asciinema
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment