Skip to content

Instantly share code, notes, and snippets.

@ivalentinee
Last active July 15, 2016 20:45
Show Gist options
  • Select an option

  • Save ivalentinee/ccbd65b9cb20e1658bbbd0917b20b8b2 to your computer and use it in GitHub Desktop.

Select an option

Save ivalentinee/ccbd65b9cb20e1658bbbd0917b20b8b2 to your computer and use it in GitHub Desktop.
Sample sbcl dockerfile
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