-
Notifications
You must be signed in to change notification settings - Fork 16
/
Dockerfile
71 lines (53 loc) · 2.31 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
FROM node:alpine AS builder
WORKDIR /smr/
RUN npm i --save grunt grunt-contrib-uglify grunt-contrib-cssmin [email protected]
# Copy the SMR source code directories
COPY src src
# Perform CSS/JS minification and cache busting
COPY Gruntfile.js .
RUN npx grunt
# Remove local grunt install so it is not copied to the next build stage
RUN rm -rf node_modules
#---------------------------
FROM php:8.3.8-apache
RUN apt-get --quiet=2 update \
&& apt-get --quiet=2 install zip unzip \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-install pdo_mysql opcache > /dev/null
# Set the baseline php.ini version (default to production)
ARG NO_DEV=1
RUN MODE=$([ "$NO_DEV" = "0" ] && echo "development" || echo "production") \
&& echo "Using $MODE php.ini" \
&& mv "$PHP_INI_DIR/php.ini-$MODE" "$PHP_INI_DIR/php.ini"
# Install PHP modules needed for development (xdebug and pcntl)
# xdebug profiler output will go to /tmp/xdebug
RUN if [ "$NO_DEV" = "0" ]; \
then \
docker-php-ext-install pcntl \
&& pecl install xdebug-3.3.2 > /dev/null \
&& docker-php-ext-enable xdebug \
&& echo "xdebug.output_dir = /tmp/xdebug" > "$PHP_INI_DIR/conf.d/xdebug.ini" \
&& mkdir /tmp/xdebug; \
fi
# Disable apache access logging (error logging is still enabled)
RUN sed -i 's|CustomLog.*|CustomLog /dev/null common|' /etc/apache2/sites-enabled/000-default.conf
# Disable apache .htaccess files (suggested optimization)
RUN sed -i 's/AllowOverride All/AllowOverride None/g' /etc/apache2/conf-enabled/docker-php.conf
WORKDIR /smr/
RUN curl -sS https://getcomposer.org/installer | \
php -- --install-dir=/usr/local/bin --filename=composer --version=2.7.4
COPY composer.json .
RUN COMPOSER_NO_DEV=$NO_DEV composer update --no-interaction
COPY --from=builder /smr .
RUN rm -rf /var/www/html/ && ln -s "$(pwd)/src/htdocs" /var/www/html
# Make the upload directory writable by the apache user
RUN chown www-data ./src/htdocs/upload
# Leverage browser caching of static assets using apache's mod_headers
COPY apache/cache-static.conf /etc/apache2/conf-enabled/cache-static.conf
RUN a2enmod headers
# Store the git commit hash of the repo in the final image
COPY .git/HEAD .git/HEAD
COPY .git/refs .git/refs
RUN REF="ref: HEAD" \
&& while [ -n "$(echo $REF | grep ref:)" ]; do REF=$(cat ".git/$(echo $REF | awk '{print $2}')"); done \
&& echo $REF > git-commit