forked from gooddata/gooddata-ruby
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.ruby
More file actions
Latest commit
19 lines (12 loc) · 384 Bytes
/
Copy pathDockerfile.ruby
File metadata and controls
19 lines (12 loc) · 384 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROMruby:2.3-alpine
MAINTAINERTomasKorcak <korczis@gmail.com>
RUNapkadd --no-cachecurlmakegccgitg++ pythonlinux-headersbinutils-goldgnupglibstdc++ openssl
# Switch to directory with sources
WORKDIR/src
# Copy required stuff
ADD . .
RUN gem update --system \
&& gem install bundler \
&& bundle install
ENTRYPOINT ["bundle", "exec"]
CMD ["./bin/gooddata"]