-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
47 lines (37 loc) · 1.17 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
FROM php:7.3-fpm-alpine
MAINTAINER "Jérôme Jutteau <[email protected]>"
# lighttpd user
ARG USER_UID=100
# www-data group
ARG GROUP_UID=82
# install base
RUN apk update && \
ln -snf /usr/share/zoneinfo/Etc/UTC /etc/localtime && \
echo "UTC" > /etc/timezone
# install jirafeau
RUN mkdir /www
WORKDIR /www
COPY .git .git
RUN apk add git && \
git reset --hard && rm -rf docker .git .gitignore .gitlab-ci.yml CONTRIBUTING.md Dockerfile README.md && \
apk del git && \
touch /www/lib/config.local.php && \
chown -R $USER_UID.$GROUP_UID /www && \
chmod o=,ug=rwX -R /www
COPY docker/cleanup.sh /cleanup.sh
RUN chmod o=,ug=rx /cleanup.sh
COPY docker/run.sh /run.sh
RUN chmod o=,ug=rx /run.sh
COPY docker/docker_config.php /docker_config.php
# install lighttpd
RUN apk add lighttpd php7-mcrypt && \
echo "extension=/usr/lib/php7/modules/mcrypt.so" > /usr/local/etc/php/conf.d/mcrypt.ini && \
chown -R $USER_UID /var/log/lighttpd && \
chmod oug=rwX /run && \
mkdir -p /usr/local/etc/php
COPY docker/php.ini /usr/local/etc/php/php.ini
COPY docker/lighttpd.conf /etc/lighttpd/lighttpd.conf
# cleanup
RUN rm -rf /var/cache/apk/*
CMD /run.sh
EXPOSE 80