mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-17 21:08:20 +01:00
36e0d29e64
For now only one option is available: FILE_HASH You can run Jirafeau's docker with -e FILE_HASH="random" to disable file hashing. ref #146 Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
47 lines
1.2 KiB
Docker
47 lines
1.2 KiB
Docker
FROM php:7.3-fpm-alpine
|
|
MAINTAINER "Jérôme Jutteau <jerome@jutteau.fr>"
|
|
|
|
# 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 |