-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
24 lines (15 loc) · 749 Bytes
/
Dockerfile
File metadata and controls
24 lines (15 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM gcr.io/stacksmith-images/ubuntu:14.04-r8
MAINTAINER Bitnami <containers@bitnami.com>
ENV BITNAMI_APP_NAME=jenkins \
BITNAMI_IMAGE_VERSION=2.19-r0 \
PATH=/opt/bitnami/tomcat/bin:$PATH
# Additional modules required
RUN bitnami-pkg install java-1.8.0_101-0 --checksum 66b64f987634e1348141e0feac5581b14e63064ed7abbaf7ba5646e1908219f9
RUN bitnami-pkg install tomcat-8.5.4-0 --checksum d2033af8a2d0d80a027fd8d2142a3ac20568615b34daa2a3cd1d944ba9c106c3
# Install jenkins
RUN bitnami-pkg unpack jenkins-2.19-0 --checksum 9e839eeb5d9af2e92b48e127ee41bd88edca5d892575e575286b361b7dbafedd
COPY rootfs /
VOLUME ["/bitnami/jenkins"]
EXPOSE 8080 8443 50000
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["harpoon", "start", "--foreground", "tomcat"]