mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-04-21 20:21:51 +02:00
support mcrypt
This commit is contained in:
parent
2b4714c704
commit
880e59e188
36
Dockerfile
36
Dockerfile
@ -1,24 +1,38 @@
|
||||
FROM php:7.3-fpm-alpine
|
||||
MAINTAINER "Jérôme Jutteau <mojo@jirafeau.net>"
|
||||
ARG USER_UID=0
|
||||
|
||||
# install base
|
||||
RUN apk update && \
|
||||
apk add lighttpd git && \
|
||||
ln -snf /usr/share/zoneinfo/Etc/UTC /etc/localtime && \
|
||||
echo "UTC" > /etc/timezone && \
|
||||
mkdir -p /usr/local/etc/php / && \
|
||||
mkdir /www
|
||||
echo "UTC" > /etc/timezone
|
||||
|
||||
|
||||
# install jirafou
|
||||
RUN mkdir /www
|
||||
WORKDIR /www
|
||||
|
||||
COPY .git .git
|
||||
RUN git reset --hard && rm -rf .git .gitignore .gitlab-ci.yml CONTRIBUTING.md Dockerfile README.md
|
||||
RUN apk add git && \
|
||||
git reset --hard && rm -rf .git .gitignore .gitlab-ci.yml CONTRIBUTING.md Dockerfile README.md && \
|
||||
apk del git && \
|
||||
chown -R $USER_UID /www && \
|
||||
chmod o=,ug=rwX -R /www && \
|
||||
chmod +x docker/cleanup
|
||||
|
||||
|
||||
# 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
|
||||
|
||||
RUN chown -R www-data. . && \
|
||||
chmod o=,ug=rwX -R . && \
|
||||
apk del git && \
|
||||
rm -rf /var/cache/apk/*
|
||||
|
||||
CMD php-fpm -D && lighttpd -D -f /etc/lighttpd/lighttpd.conf
|
||||
# cleanup
|
||||
RUN rm -rf /var/cache/apk/*
|
||||
|
||||
|
||||
CMD /www/docker/cleanup & php-fpm -D && lighttpd -D -f /etc/lighttpd/lighttpd.conf
|
||||
EXPOSE 80
|
||||
|
Loading…
x
Reference in New Issue
Block a user