-
Notifications
You must be signed in to change notification settings - Fork 26
/
Dockerfile
26 lines (17 loc) · 1 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
FROM gcr.io/stacksmith-images/ubuntu:14.04-r07
MAINTAINER Bitnami <[email protected]>
ENV BITNAMI_APP_NAME=joomla \
BITNAMI_IMAGE_VERSION=3.5.1-r1 \
PATH=/opt/bitnami/php/bin:/opt/bitnami/mysql/bin/:$PATH
# Additional modules required
RUN bitnami-pkg unpack apache-2.4.20-0 --checksum ec415b0938e6df70327055c5be50f80b1307b785fa5bbd04c94a4077519e5dba
RUN bitnami-pkg unpack php-5.6.22-0 --checksum 2439cf0adfc7cc21f15a6136059883e749958af83a082108e63a80ff3c5290c0
RUN bitnami-pkg install libphp-5.6.21-0 --checksum 8c1f994108eb17c69b00ac38617997b8ffad7a145a83848f38361b9571aeb73e
RUN bitnami-pkg install mysql-client-10.1.13-1 --checksum e16c0ace5cb779b486e52af83a56367f26af16a25b4ab92d8f4293f1bf307107
# Install joomla
RUN bitnami-pkg unpack joomla-3.5.1-1 --checksum 1eba6301c87839bcb267a66850e89aed7aa1283c8f0041f49ba65199b9cb190d
COPY rootfs /
VOLUME ["/bitnami/joomla", "/bitnami/apache", "/bitnami/php"]
EXPOSE 80 443
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["harpoon", "start", "--foreground", "apache"]