LoginSignup
9
8

More than 5 years have passed since last update.

pyonpyon できる Docker イメージできました

Last updated at Posted at 2015-12-13

ということなので Docker イメージを作りましたdocker pull hkrn/pyonpyon して docker run -t hkrn/pyonpyon するだけで動きます。

Dockerfile も以下で全部

FROM alpine:3.4
MAINTAINER hkrn

RUN apk add --update g++ git make ncurses-dev && \
  git clone -b pyonpyon https://github.com/sgymtic/sl pyonpyon && \
  cd pyonpyon && \
  make && \
  apk del g++ git make ncurses-dev && \
  apk add ncurses && \
  rm -rf .git /var/cache/apk/*

ENTRYPOINT ["/pyonpyon/pyonpyon"]
9
8
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
9
8