-
-
Save cjwilburn/eae5d6b50eabd78152c54d7ee43e9567 to your computer and use it in GitHub Desktop.
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:latest | |
| RUN apt-get update | |
| RUN apt-get install -y ruby2.2.1 git | |
| RUN apt-get clean | |
| RUN gem install bundler | |
| RUN locale-gen en_US en_US.UTF-8 | |
| EXPOSE 8080 | |
| RUN git clone https://github.com/cwruacm/acm.case.edu /opt/acm/ | |
| RUN cd /opt/acm && bundle install | |
| WORKDIR /opt/acm | |
| CMD ["unicorn","-d","-c", "unicorn.conf"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment