Skip to content

Instantly share code, notes, and snippets.

@fukamachi
Created June 16, 2015 10:52
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fukamachi/84064b0fdf1cf6038db5 to your computer and use it in GitHub Desktop.
Save fukamachi/84064b0fdf1cf6038db5 to your computer and use it in GitHub Desktop.
Dockerfile for building an image of Ubuntu with Roswell
FROM ubuntu
MAINTAINER Eitaro Fukamachi <e.arrows@gmail.com>
LABEL Description="Ubuntu with Roswell, Common Lisp implementation manager"
RUN apt-get update && apt-get install -y autotools-dev automake libcurl4-gnutls-dev curl make
RUN curl -SL https://github.com/snmsts/roswell/archive/release.tar.gz \
| tar -xzC /tmp/ \
&& cd /tmp/roswell-release \
&& sh bootstrap \
&& ./configure \
&& make \
&& sudo make install
@fukamachi
Copy link
Author

You can find the built image at Docker Hub and can get it by docker pull fukamachi/roswell.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment