forked from digitalcanvasdesign/docker-invoiceninja-nginx
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile.tag
executable file
·55 lines (47 loc) · 1.75 KB
/
Dockerfile.tag
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
FROM invoiceninja/invoiceninja
LABEL maintainer="RXWatcher"
ENV NGINX_VERSION 1.15.8-1~stretch
ENV BUILD_DEPENDENCIES="\
\
wget" \
RUN_DEPENDENCIES="\
openssl \
supervisor \
cron \
gnupg"
COPY ./crontab.txt /var/crontab.txt
RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y $BUILD_DEPENDENCIES $RUN_DEPENDENCIES \
\
&& ( \
wget http://nginx.org/keys/nginx_signing.key && apt-key add nginx_signing.key && rm -f nginx_signing.key \
&& echo "deb http://nginx.org/packages/mainline/debian/ stretch nginx" >> /etc/apt/sources.list \
&& apt-get update && apt-get install --no-install-recommends --no-install-suggests -y nginx=${NGINX_VERSION} \
&& rm -f /etc/nginx/conf.d/* \
) \
&& ( \
PUID=${PUID:-1000} \
&& PGID=${PGID:-1000} \
&& groupmod -o -g "$PGID" www-data \
&& usermod -o -u "$PUID" www-data \
&& crontab /var/crontab.txt \
&& chmod 600 /etc/crontab \
) \
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $BUILD_DEPENDENCIES \
&& apt-get clean \
&& mkdir -p /var/log/nginx \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY ./crontab.txt /var/crontab.txt
RUN crontab /var/crontab.txt \
&& chmod 600 /etc/crontab \
&& mkdir -p /var/log/ninja_cron \
&& mkdir -p /var/log/supervisor \
&& touch /var/log/ninja_cron/reminders.log \
&& touch /var/log/ninja_cron/invoices.log
COPY ./nginx.conf /etc/nginx/
COPY ./supervisord.conf /etc/supervisord.conf
COPY ./nginx/conf.d/ /etc/nginx/conf.d
COPY ./nginx.conf /etc/nginx/
COPY ./bin/ /ninja/bin/
RUN chmod +x /ninja/bin/*
EXPOSE 80
CMD ["/ninja/bin/start"]