Created
June 16, 2015 10:52
-
-
Save fukamachi/84064b0fdf1cf6038db5 to your computer and use it in GitHub Desktop.
Dockerfile for building an image of Ubuntu with Roswell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu | |
MAINTAINER Eitaro Fukamachi <[email protected]> | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can find the built image at Docker Hub and can get it by
docker pull fukamachi/roswell
.