forked from codeforamerica/ohana-web-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
26 lines (17 loc) · 826 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM ruby:2.3.3
RUN apt-get update && apt-get install -y nodejs --no-install-recommends && rm -rf /var/lib/apt/lists/*
# PhantomJS is required for running tests
ENV PHANTOMJS_SHA256 86dd9a4bf4aee45f1a84c9f61cf1947c1d6dce9b9e8d2a907105da7852460d2f
RUN mkdir /usr/local/phantomjs \
&& curl -o phantomjs.tar.bz2 -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 \
&& echo "$PHANTOMJS_SHA256 *phantomjs.tar.bz2" | sha256sum -c - \
&& tar -xjf phantomjs.tar.bz2 -C /usr/local/phantomjs --strip-components=1 \
&& rm phantomjs.tar.bz2
RUN ln -s ../phantomjs/bin/phantomjs /usr/local/bin/
WORKDIR /ohana-web-search
COPY Gemfile /ohana-web-search
COPY Gemfile.lock /ohana-web-search
RUN bundle install
COPY . /ohana-web-search
EXPOSE 3000
CMD ["rails", "server", "-b", "0.0.0.0"]