This repository was archived by the owner on Jan 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile.development
More file actions
57 lines (50 loc) · 2.42 KB
/
Copy pathDockerfile.development
File metadata and controls
57 lines (50 loc) · 2.42 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Ruby environment
FROM ruby:2.3.1
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev apt-transport-https libcurl4-openssl-dev
# Node environment, from the commands on the node official image:
#RUN set -ex \
# && for key in \
# 9554F04D7259F04124DE6B476D5A82AC7E37093B \
# 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
# 0034A06D9D9B0064CE8ADF6BF1747F4AD2306D93 \
# FD3A5288F042B6850C66B31F09FE44734EB7990E \
# 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
# DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
# B9AE9905FFD7803F25714661B63B535A4C206CA9 \
# C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
# 56730D5401028683275BD23C23EFEFE93C4CFFFE \
# ; do \
# gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
# done
ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.2.0
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
# && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
# && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
# && grep " node-v$NODE_VERSION-linux-x64.tar.xz\$" SHASUMS256.txt | sha256sum -c - \
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1
# && rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt
# PhantomJS for Capybara/Poltergeist
ENV PHANTOMJS_VERSION 2.1.1
RUN curl -L -O https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 \
&& (while ! tar xvfj phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2; do \
curl -L -O https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2; \
done) \
&& cp phantomjs-$PHANTOMJS_VERSION-linux-x86_64/bin/phantomjs /usr/local/bin \
&& rm -rf phantomjs-$PHANTOMJS_VERSION-linux-x86_64
# Node-based tools used by our app:
RUN npm install -g git+https://github.com/continuum/sway.git#4c2e00e24749a70b2304cc4e1bc126a2223f91fb
# Java for swagger-codegen:
RUN apt-get install -y openjdk-7-jre
# Our app:
RUN mkdir /app
WORKDIR /app
# For development we do NOT run bundle here, to avoid rebuilding every time
# we change the Gemfile (which would lead to a full download of every gem in
# the project again)
#
# Our Makefile drives the (re)bundling when necessary. We do not bust Bundler's
# cache (thanks to the bundle_cache container defined on docker-compose.yml)
# and therefore only download new gems.
#
ADD . /app