forked from openware/peatio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
73 lines (57 loc) · 2.19 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
FROM ruby:2.5.3 as base
MAINTAINER lbellet@heliostech.fr
# By default image is built using RAILS_ENV=production.
# You may want to customize it:
#
# --build-arg RAILS_ENV=development
#
# See https://docs.docker.com/engine/reference/commandline/build/#set-build-time-variables-build-arg
#
ARG RAILS_ENV=production
ENV RAILS_ENV=${RAILS_ENV} APP_HOME=/home/app
# Allow customization of user ID and group ID (it's useful when you use Docker bind mounts)
ARG UID=1000
ARG GID=1000
# Set the TZ variable to avoid perpetual system calls to stat(/etc/localtime)
ENV TZ=UTC
# Create group "app" and user "app".
RUN groupadd -r --gid ${GID} app \
&& useradd --system --create-home --home ${APP_HOME} --shell /sbin/nologin --no-log-init \
--gid ${GID} --uid ${UID} app
# Install system dependencies.
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update \
&& apt-get install -y \
default-libmysqlclient-dev \
nodejs \
yarn
WORKDIR $APP_HOME
# Install dependencies defined in Gemfile.
COPY Gemfile Gemfile.lock $APP_HOME/
RUN mkdir -p /opt/vendor/bundle \
&& chown -R app:app /opt/vendor \
&& su app -s /bin/bash -c "bundle install --path /opt/vendor/bundle"
# Copy application sources.
COPY . $APP_HOME
# TODO: Use COPY --chown=app:app when Docker Hub will support it.
RUN chown -R app:app $APP_HOME
# Switch to application user.
USER app
# Initialize application configuration & assets.
RUN echo "# This file was overridden by default during docker image build." > Gemfile.plugin \
&& ./bin/init_config \
&& chmod +x ./bin/logger \
&& bundle exec rake tmp:create \
&& bundle exec rake yarn:install assets:precompile
# 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.
CMD ["bundle", "exec", "puma", "--config", "config/puma.rb"]
# Extend base image with plugins.
FROM base
# Copy Gemfile.plugin for installing plugins.
COPY Gemfile.plugin $APP_HOME
# Install plugins.
RUN bundle install --path /opt/vendor/bundle