-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
41 lines (36 loc) · 1.66 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
FROM ghcr.io/unb-libraries/drupal:9.x-2.x-unblib
ENV ADDITIONAL_OS_PACKAGES="postfix php7-ldap php7-xmlreader php7-zip php7-redis php7-bcmath openssh-client"
ENV DRUPAL_PRIVATE_FILE_PATH="/app/private_filesystem"
ENV DRUPAL_SITE_ID="libweb"
ENV DRUPAL_SITE_URI="lib.unb.ca"
ENV DRUPAL_SITE_UUID="87d22fc3-a2d0-4543-aab8-6ed800691b7b"
# Build application.
COPY ./build/ /build/
RUN ${RSYNC_MOVE} /build/scripts/container/ /scripts/ && \
${RSYNC_MOVE} /build/keys/ /app/keys/ && \
/scripts/addOsPackages.sh && \
/scripts/initOpenLdap.sh && \
/scripts/setupStandardConf.sh && \
/scripts/build.sh && \
/scripts/linkDrupalCronEntryInitLib.sh
# Deploy configuration.
COPY ./configuration ${DRUPAL_CONFIGURATION_DIR}
RUN /scripts/pre-init.d/72_secure_config_sync_dir.sh
# Deploy custom modules, themes.
COPY ./custom/themes ${DRUPAL_ROOT}/themes/custom
COPY ./custom/modules ${DRUPAL_ROOT}/modules/custom
# Container metadata.
LABEL ca.unb.lib.generator="drupal9" \
com.microscaling.docker.dockerfile="/Dockerfile" \
com.microscaling.license="MIT" \
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.description="lib.unb.ca is the core web application at UNB Libraries." \
org.label-schema.name="lib.unb.ca" \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://lib.unb.ca" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/unb-libraries/lib.unb.ca" \
org.label-schema.vendor="University of New Brunswick Libraries" \
org.label-schema.version=$VERSION \
org.opencontainers.image.authors="UNB Libraries <[email protected]>" \
org.opencontainers.image.source="https://github.com/unb-libraries/lib.unb.ca"