mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-17 04:48:19 +01:00
[TASK] re-arrange Docker overlays to speedup image creation
Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
This commit is contained in:
parent
9a72b7f56f
commit
aec88112ff
26
Dockerfile
26
Dockerfile
@ -1,13 +1,21 @@
|
|||||||
FROM php:8.1-fpm-alpine
|
FROM php:8.1-fpm-alpine
|
||||||
LABEL org.opencontainers.image.authors="jerome@jutteau.fr"
|
LABEL org.opencontainers.image.authors="jerome@jutteau.fr"
|
||||||
|
|
||||||
# install base
|
# base install
|
||||||
RUN apk update && \
|
RUN apk update && \
|
||||||
|
apk add lighttpd && \
|
||||||
|
rm -rf /var/cache/apk/* && \
|
||||||
ln -snf /usr/share/zoneinfo/Etc/UTC /etc/localtime && \
|
ln -snf /usr/share/zoneinfo/Etc/UTC /etc/localtime && \
|
||||||
echo "UTC" > /etc/timezone
|
echo "UTC" > /etc/timezone
|
||||||
|
|
||||||
# install lighttpd
|
COPY docker/cleanup.sh /cleanup.sh
|
||||||
RUN apk add lighttpd
|
COPY docker/run.sh /run.sh
|
||||||
|
RUN chmod o=,ug=rx /cleanup.sh /run.sh
|
||||||
|
COPY docker/docker_config.php /docker_config.php
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
# install jirafeau
|
# install jirafeau
|
||||||
RUN mkdir /www
|
RUN mkdir /www
|
||||||
@ -19,17 +27,5 @@ RUN rm -rf docker && \
|
|||||||
chown -R $(id -u lighttpd).$(id -g www-data) /www && \
|
chown -R $(id -u lighttpd).$(id -g www-data) /www && \
|
||||||
chmod o=,ug=rwX -R /www
|
chmod o=,ug=rwX -R /www
|
||||||
|
|
||||||
COPY docker/cleanup.sh /cleanup.sh
|
|
||||||
COPY docker/run.sh /run.sh
|
|
||||||
RUN chmod o=,ug=rx /cleanup.sh /run.sh
|
|
||||||
COPY docker/docker_config.php /docker_config.php
|
|
||||||
|
|
||||||
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
|
CMD /run.sh
|
||||||
EXPOSE 80
|
EXPOSE 80
|
Loading…
x
Reference in New Issue
Block a user