-
Notifications
You must be signed in to change notification settings - Fork 383
/
Dockerfile
106 lines (88 loc) · 2.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
FROM alpine:3.12 AS build
RUN apk add -u --no-cache npm php7
WORKDIR /code
COPY package.json .
RUN npm install -g grunt
RUN npm install
COPY .sandstorm/ .sandstorm/
COPY .tx/ .tx/
COPY docs/ docs/
COPY Jelastic/ Jelastic/
COPY build/ build/
COPY client/ client/
COPY docker-scripts/nginx.conf restyaboard.conf
COPY sql/ sql/
COPY api_explorer/ api_explorer/
COPY server/ server/
COPY media/ media/
COPY .codeclimate.yml .
COPY .htaccess .
COPY diagnose.php .
COPY ejabberd.yml .
COPY restyaboard.sh .
COPY restyaboard-ssl.conf .
COPY restyaboard_uninstall.sh .
COPY Gruntfile.js .
RUN npm run docker:prebuild
FROM alpine:3.12
# update & install package
RUN apk add -u --no-cache \
bash \
curl \
# imagemagick is heavy. Adds a couple of MB to the image
imagemagick \
jq \
nginx \
php7 \
php7-curl \
php7-fpm \
php7-imagick \
php7-imap \
php7-json \
php7-ldap \
php7-mbstring \
php7-pdo_pgsql \
php7-pgsql \
php7-xml \
postgresql-client \
unzip \
tzdata && \
sed -i 's/nobody/nginx/g' /etc/php7/php-fpm.d/www.conf && \
rm /etc/nginx/conf.d/default.conf
# after initial setup of deps to improve rebuilding speed
ENV ROOT_DIR=/var/lib/nginx/html \
CONF_FILE=/etc/nginx/conf.d/restyaboard.conf \
SMTP_SERVER=smtp_relay \
SMTP_PORT=587 \
TZ=Etc/UTC
# deploy app
COPY --from=build /code/restyaboard-docker.zip /tmp/restyaboard.zip
RUN unzip /tmp/restyaboard.zip -d ${ROOT_DIR} && \
rm /tmp/restyaboard.zip && \
chown -R nginx:nginx ${ROOT_DIR}
# install apps
ADD docker-scripts/install_apps.sh /tmp/
RUN chmod +x /tmp/install_apps.sh
RUN . /tmp/install_apps.sh && \
chown -R nginx:nginx ${ROOT_DIR}
# configure app
WORKDIR ${ROOT_DIR}
RUN cp restyaboard.conf ${CONF_FILE} && \
sed -i "s/server_name.*$/server_name \"localhost\";/" ${CONF_FILE} && \
sed -i "s|listen 80.*$|listen 80;|" ${CONF_FILE} && \
sed -i "s|root.*html|root ${ROOT_DIR}|" ${CONF_FILE}
# entrypoint
COPY docker-scripts/docker-entrypoint.sh /
COPY docker-scripts/init-db.sh /
# Default values. Can be changed during container start.
ENV POSTGRES_HOST=postgres \
POSTGRES_PORT=5432 \
RESTYA_DB=restyaboard
RUN chmod +x /docker-entrypoint.sh
RUN chmod +x /init-db.sh
RUN chmod +x server/php/shell/main.sh
# Default ports
EXPOSE 80
# TODO root user should be avoided but required for now
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["start"]