Created
May 4, 2016 09:37
-
-
Save joebew42/687edbcbe887ecbcd5c030cbea1b6c9e to your computer and use it in GitHub Desktop.
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 ruby:2.3-alpine | |
RUN apk add --update alpine-sdk && \ | |
apk add --update mysql-dev && \ | |
apk add --update libxslt-dev libxml2-dev && \ | |
apk add --update ruby-dev && \ | |
apk add --update libxslt libxml2 && \ | |
apk add --update xz-dev && \ | |
apk add --update zlib-dev && \ | |
apk add --update linux-headers && \ | |
rm -rf /var/cache/apk/* | |
RUN mkdir /app | |
WORKDIR /app | |
EXPOSE 8080 | |
VOLUME /app | |
CMD [ "sh", "-c", "while true; do sleep 10; done" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment