blob: 710f4f039c65b06b3a65bb219075d8530447d707 [file] [log] [blame]
Jonathan Hart15a71d82017-07-20 16:14:21 -07001# First stage is the build environment
2FROM sgrio/java-oracle:jdk_8 as builder
3MAINTAINER Jonathan Hart <jono@opennetworking.org>
alshabib187f1722015-06-23 16:15:50 -07004
5# Set the environment variables
6ENV HOME /root
alshabib187f1722015-06-23 16:15:50 -07007ENV BUILD_NUMBER docker
Ray Milkey8c05c9b2017-03-15 15:47:57 -07008ENV JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8
Jonathan Hart809edee2016-12-15 18:33:05 -08009
Jonathan Hart77daee82017-01-16 14:29:20 -080010# Copy in the source
Jonathan Hart587dfac2017-01-09 14:42:50 -080011COPY . /src/onos/
alshabib187f1722015-06-23 16:15:50 -070012
Jonathan Hart77daee82017-01-16 14:29:20 -080013# Build ONOS
Jonathan Hart15a71d82017-07-20 16:14:21 -070014# We extract the tar in the build environment to avoid having to put the tar
15# in the runtime environment - this saves a lot of space
Ray Milkey9d81ea52017-07-20 10:36:51 -070016# FIXME - dependence on ONOS_ROOT and git at build time is a hack to work around
17# build problems
Jonathan Hart15a71d82017-07-20 16:14:21 -070018WORKDIR /src/onos
Ray Milkeyb38701e2018-08-14 08:43:36 -070019RUN apt-get update && apt-get install -y zip python git bzip2 build-essential && \
20 curl -L -o bazel.sh https://github.com/bazelbuild/bazel/releases/download/0.15.2/bazel-0.15.2-installer-linux-x86_64.sh && \
21 chmod +x bazel.sh && \
22 ./bazel.sh --user && \
Jonathan Hart15a71d82017-07-20 16:14:21 -070023 export ONOS_ROOT=/src/onos && \
Ray Milkeyb38701e2018-08-14 08:43:36 -070024 ln -s /usr/lib/jvm/java-8-oracle/bin/jar /etc/alternatives/jar && \
25 ln -s /etc/alternatives/jar /usr/bin/jar && \
Ray Milkeyb42f4dd2018-08-14 10:24:26 -070026 ~/bin/bazel build onos --verbose_failures --jobs 2 && \
Jonathan Hart15a71d82017-07-20 16:14:21 -070027 mkdir -p /src/tar && \
28 cd /src/tar && \
Ray Milkeyb38701e2018-08-14 08:43:36 -070029 tar -xf /src/onos/bazel-bin/onos.tar.gz --strip-components=1 && \
30 rm -rf /src/onos/bazel-* .git
Jonathan Hart15a71d82017-07-20 16:14:21 -070031
32# Second stage is the runtime environment
33FROM anapsix/alpine-java:8_server-jre
alshabib187f1722015-06-23 16:15:50 -070034
35# Change to /root directory
Jonathan Hart15a71d82017-07-20 16:14:21 -070036RUN apk update && \
37 apk add curl && \
38 mkdir -p /root/onos
39WORKDIR /root/onos
alshabib187f1722015-06-23 16:15:50 -070040
Jonathan Hart77daee82017-01-16 14:29:20 -080041# Install ONOS
Jonathan Hart15a71d82017-07-20 16:14:21 -070042COPY --from=builder /src/tar/ .
alshabib187f1722015-06-23 16:15:50 -070043
Jonathan Hart3e864192017-07-20 19:24:49 -070044# Configure ONOS to log to stdout
45RUN sed -ibak '/log4j.rootLogger=/s/$/, stdout/' $(ls -d apache-karaf-*)/etc/org.ops4j.pax.logging.cfg
46
Jonathan Hart15a71d82017-07-20 16:14:21 -070047LABEL org.label-schema.name="ONOS" \
48 org.label-schema.description="SDN Controller" \
49 org.label-schema.usage="http://wiki.onosproject.org" \
50 org.label-schema.url="http://onosproject.org" \
51 org.label-scheme.vendor="Open Networking Foundation" \
52 org.label-schema.schema-version="1.0"
alshabib187f1722015-06-23 16:15:50 -070053
54# Ports
Charles Chan45624b82015-08-24 00:29:20 +080055# 6653 - OpenFlow
Jonathan Hart77daee82017-01-16 14:29:20 -080056# 6640 - OVSDB
alshabib187f1722015-06-23 16:15:50 -070057# 8181 - GUI
58# 8101 - ONOS CLI
Jonathan Hart15a71d82017-07-20 16:14:21 -070059# 9876 - ONOS intra-cluster communication
Jonathan Hart77daee82017-01-16 14:29:20 -080060EXPOSE 6653 6640 8181 8101 9876
alshabib187f1722015-06-23 16:15:50 -070061
62# Get ready to run command
David Bainbridgeff4fb042015-08-17 12:53:29 -070063ENTRYPOINT ["./bin/onos-service"]
Jonathan Hart3e864192017-07-20 19:24:49 -070064CMD ["server"]