-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (19 loc) · 816 Bytes
/
Dockerfile
File metadata and controls
23 lines (19 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM plone:4.3.19
ENV EDW_LOGGER_PUBLISHER=false \
EDW_LOGGER_USER_ID=true \
GRAYLOG=logcentral.eea.europa.eu:12201 \
GRAYLOG_FACILITY=eea.docker.kgs \
EEA_KGS_VERSION=23.9.14
LABEL eea-kgs-version=$EEA_KGS_VERSION \
maintainer="EEA: IDM2 A-Team <eea-edw-a-team-alerts@googlegroups.com>"
RUN mv /docker-entrypoint.sh /plone-entrypoint.sh \
&& mv -v versions.cfg plone-versions.cfg \
&& ls -a | grep .cfg | grep -v zope | grep -v plone | xargs rm \
#Update stretch repositories
&& sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list \
&& sed -i 's|security.debian.org|archive.debian.org/|g' /etc/apt/sources.list \
&& sed -i '/stretch-updates/d' /etc/apt/sources.list
COPY src/docker/* /
COPY src/plone/* /plone/instance/
COPY packages/* /packages/
RUN /docker-setup.sh