This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Dockerfile
74 lines (61 loc) · 1.6 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
74
#
# Postfacto, a free, open-source and self-hosted retro tool aimed at helping
# remote teams.
#
# Copyright (C) 2016 - Present Pivotal Software, Inc.
#
# This program is free software: you can redistribute it and/or modify
#
# it under the terms of the GNU Affero General Public License as
#
# published by the Free Software Foundation, either version 3 of the
#
# License, or (at your option) any later version.
#
#
#
# This program is distributed in the hope that it will be useful,
#
# but WITHOUT ANY WARRANTY; without even the implied warranty of
#
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#
# GNU Affero General Public License for more details.
#
#
#
# You should have received a copy of the GNU Affero General Public License
#
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
FROM node:14.16.1 as front-end
COPY ./web /web
WORKDIR /web
RUN npm ci
RUN npm run build
FROM ruby:2.7.3-alpine
RUN gem install bundler:2.2.16
COPY ./api /postfacto
COPY docker/release/entrypoint /
COPY docker/release/create-admin-user /usr/local/bin
COPY --from=front-end /web/build /postfacto/client/
WORKDIR /postfacto
# Nokogiri dependencies
RUN apk add --update \
build-base \
libxml2-dev \
libxslt-dev
RUN apk add --update \
mariadb-dev \
postgresql-dev \
sqlite-dev
RUN apk add --update nodejs
RUN bundle config build.nokogiri --use-system-libraries
RUN bundle install --without test
RUN bundle exec rake assets:precompile
ENV RAILS_ENV production
ENV RAILS_SERVE_STATIC_FILES true
ENV GOOGLE_OAUTH_CLIENT_ID ""
ENV ENABLE_ANALYTICS false
EXPOSE 3000
ENTRYPOINT "/entrypoint"