-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (18 loc) · 1.13 KB
/
Dockerfile
File metadata and controls
27 lines (18 loc) · 1.13 KB
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
FROM gcr.io/stacksmith-images/ubuntu:14.04-r10
MAINTAINER Bitnami <containers@bitnami.com>
ENV BITNAMI_APP_NAME=phabricator \
BITNAMI_IMAGE_VERSION=2016.40-r0 \
PATH=/opt/bitnami/arcanist/bin:/opt/bitnami/php/bin:/opt/bitnami/mysql/bin:$PATH
# Additional modules required
RUN bitnami-pkg unpack apache-2.4.23-7 --checksum bcbe93875f4017ed762caf73774a35b449e22c441e6b3f619f386294ba0a5958
RUN bitnami-pkg unpack php-5.6.26-1 --checksum b7a72ae78f9b19352bd400dfe027465c88a8643c0e5d9753f8d12f4ebae542a2
RUN bitnami-pkg install libphp-5.6.26-1 --checksum 327d070f57727f2ed4f0246d0e3f61c5a94f6366d21a7e7e4572fe6c9c8e8c2d
RUN bitnami-pkg install git-2.6.1-2 --checksum edc04dc263211f3ffdc953cb96e5e3e76293dbf7a97a075b0a6f04e048b773dd
RUN bitnami-pkg install mysql-client-10.1.13-4 --checksum 14b45c91dd78b37f0f2366712cbe9bfdf2cb674769435611955191a65dbf4976
# Install phabricator
RUN bitnami-pkg unpack phabricator-2016.40-0 --checksum a3afe1f41707a682c439d5ffb54971d2c206a2af773e41886c8c84b6c1e36617
COPY rootfs /
VOLUME ["/bitnami/phabricator", "/bitnami/apache", "/bitnami/php"]
EXPOSE 80 443
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["/init.sh"]