Last active
July 15, 2016 20:45
-
-
Save ivalentinee/ccbd65b9cb20e1658bbbd0917b20b8b2 to your computer and use it in GitHub Desktop.
Sample sbcl dockerfile
This file contains hidden or 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 | |
| RUN apt-get update -qq | |
| RUN apt-get install -y sbcl | |
| RUN apt-get install -y build-essential curl | |
| RUN curl -O https://beta.quicklisp.org/quicklisp.lisp | |
| RUN sbcl --load quicklisp.lisp --eval '(quicklisp-quickstart:install)' | |
| RUN mkdir -p /app/ | |
| WORKDIR /app/ | |
| EXPOSE 5000 | |
| ADD . /app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment