Skip to content

Instantly share code, notes, and snippets.

@joebew42
Created May 4, 2016 09:37
Show Gist options
  • Save joebew42/687edbcbe887ecbcd5c030cbea1b6c9e to your computer and use it in GitHub Desktop.
Save joebew42/687edbcbe887ecbcd5c030cbea1b6c9e to your computer and use it in GitHub Desktop.
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