-
Notifications
You must be signed in to change notification settings - Fork 18
/
Dockerfile
37 lines (30 loc) · 1.04 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
###########
# FreeHub #
###########
# Password is test for greeter, sfbk, mechanic, scbc, cbi, admin
# Docker config details at
# https://blog.codeship.com/running-rails-development-environment-docker/
FROM ruby:1.9.3
MAINTAINER Alon Salant <alon@salant.org>
RUN apt-get update && apt-get install -y mysql-client
# Configure the main working directory. This is the base
# directory used in any further RUN, COPY, and ENTRYPOINT
# commands.
RUN mkdir -p /app
WORKDIR /app
# Copy the Gemfile as well as the Gemfile.lock and install
# the RubyGems. This is a separate step so the dependencies
# will be cached unless changes to one of those two files
# are made.
COPY Gemfile Gemfile.lock ./
RUN gem install bundler -v 1.15.4
RUN bundle install --jobs 20 --retry 5
# Copy the main application.
COPY . ./
# Expose port 3000 to the Docker host, so we can access it
# from the outside.
EXPOSE 3000
# The main command to run when the container starts. Also
# tell the Rails dev server to bind to all interfaces by
# default.
CMD ["./script/server -b 0.0.0.0"]