-
-
Notifications
You must be signed in to change notification settings - Fork 498
/
Dockerfile
51 lines (36 loc) · 1.59 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
FROM ruby:2.5
ENV RAILS_ENV=production \
HELPY_HOME=/helpy \
HELPY_USER=helpyuser \
HELPY_SLACK_INTEGRATION_ENABLED=true \
BUNDLE_PATH=/opt/helpy-bundle
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y nodejs postgresql-client imagemagick --no-install-recommends \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN useradd --no-create-home $HELPY_USER \
&& mkdir -p $HELPY_HOME $BUNDLE_PATH \
&& chown -R $HELPY_USER:$HELPY_USER $HELPY_HOME $BUNDLE_PATH
WORKDIR $HELPY_HOME
COPY Gemfile Gemfile.lock $HELPY_HOME/
COPY vendor $HELPY_HOME/vendor
RUN chown -R $HELPY_USER $HELPY_HOME
USER $HELPY_USER
# add the slack integration gem to the Gemfile if the HELPY_SLACK_INTEGRATION_ENABLED is true
# use `test` for sh compatibility, also use only one `=`. also for sh compatibility
RUN test "$HELPY_SLACK_INTEGRATION_ENABLED" = "true" \
&& sed -i '128i\gem "helpy_slack", git: "https://github.com/helpyio/helpy_slack.git", branch: "master"' $HELPY_HOME/Gemfile
RUN bundle install --without test development
# manually create the /helpy/public/assets and uploads folders and give the helpy user rights to them
# this ensures that helpy can write precompiled assets to it, and save uploaded files
RUN mkdir -p $HELPY_HOME/public/assets $HELPY_HOME/public/uploads \
&& chown $HELPY_USER $HELPY_HOME/public/assets $HELPY_HOME/public/uploads
VOLUME $HELPY_HOME/public
USER root
COPY . $HELPY_HOME/
RUN chown -R $HELPY_USER $HELPY_HOME
USER $HELPY_USER
COPY docker/database.yml $HELPY_HOME/config/database.yml
EXPOSE 3000
CMD ["/bin/bash", "/helpy/docker/run.sh"]