We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97125f commit 63ec5c6Copy full SHA for 63ec5c6
1 file changed
Dockerfile
@@ -1 +1,23 @@
1
+#Pull a ubuntu image of version 18.10
2
+FROM ubuntu:18.10
3
4
+#Maintainer of this docker build
5
+MAINTAINER vickeyreddy
6
+
7
+#User to build this image
8
+#USER docker
9
10
+#Set the WORKDIR
11
+WORKDIR /jenkins
12
13
+#Add all the source code to this directory
14
+ADD . /jenkins
15
16
+#Give permission to execute install_jenkins.sh file
17
+RUN chmod +x ./install_jenkins.sh
18
19
+EXPOSE 8080
20
21
+ENTRYPOINT ["./install_jenkins.sh"]
22
23
+CMD ["/bin/sh"]
0 commit comments