-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathDockerfile
65 lines (49 loc) · 1.7 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
# This dockerfile creates a base image, which it uses for setup of gc mediawiki packages and extensions.
# Finally, it copies files required for mediawiki's runtime from teh setup container to the bsae container for runtime.
# Stage 1: Base Image with Dependencies
FROM mediawiki:1.40.4 as base
ENV MEDIAWIKI_EXT_BRANCH REL1_40
LABEL maintainer="GC Tools team"
WORKDIR /var/www/html/
# Install required packages
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y --no-install-recommends \
git \
libzip-dev \
ffmpeg \
htmldoc \
unzip \
zlib1g-dev \
zip \
curl
# Copy local extensions here, in case there are dependencies solved in setup
COPY extensions /var/www/html/extensions
RUN ls -lat /var/www/html/extensions
FROM base as setup
# Stage 2: Site specific mediawiki setup
COPY . /setup
# Make the setup script executable
RUN chmod +x /setup/setup_mediawiki.sh
# Install Composer
RUN apt-get update && apt-get install -y \
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Run the setup_mediawiki script
RUN /setup/setup_mediawiki.sh
# Stage 2: Final Image
FROM base
RUN rm -rf /var/lib/apt/lists/*
COPY --from=setup /var/www/html /var/www/html
# Copy init scripts
COPY init/* /init/
COPY site/mediawiki.ini /usr/local/etc/php/conf.d/mediawiki.ini
COPY site/LocalSettings.php /site/
COPY site/config-gcpedia.php /site/
COPY site/config-gcwiki.php /site/
RUN chmod +x /init/init.sh
# this is needed to use InnoDB instead of MyISAM
COPY maintenance/tables-generated.sql maintenance/
USER www-data
ENTRYPOINT [ "bash", "/init/init.sh" ]
CMD [ "apache2-foreground" ]