blob: 9f85dc656aef2e98508352d664ed7f7f26a0d733 [file] [log] [blame]
Jonathan Hart15a71d82017-07-20 16:14:21 -07001# First stage is the build environment
Ray Milkeyc3a14912019-02-15 10:00:57 -08002FROM picoded/ubuntu-openjdk-8-jdk as builder
3MAINTAINER Ray Milkey <ray@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 && \
Ray Milkey716166f2018-11-09 10:18:54 -080020 curl -L -o bazel.sh https://github.com/bazelbuild/bazel/releases/download/0.19.0/bazel-0.19.0-installer-linux-x86_64.sh && \
Ray Milkeyb38701e2018-08-14 08:43:36 -070021 chmod +x bazel.sh && \
22 ./bazel.sh --user && \
Jonathan Hart15a71d82017-07-20 16:14:21 -070023 export ONOS_ROOT=/src/onos && \
Ray Milkeyb42f4dd2018-08-14 10:24:26 -070024 ~/bin/bazel build onos --verbose_failures --jobs 2 && \
Jonathan Hart15a71d82017-07-20 16:14:21 -070025 mkdir -p /src/tar && \
26 cd /src/tar && \
Ray Milkeyb38701e2018-08-14 08:43:36 -070027 tar -xf /src/onos/bazel-bin/onos.tar.gz --strip-components=1 && \
28 rm -rf /src/onos/bazel-* .git
Jonathan Hart15a71d82017-07-20 16:14:21 -070029
30# Second stage is the runtime environment
Ray Milkey6f5b6462018-12-12 15:31:30 -080031FROM adoptopenjdk/openjdk11:x86_64-ubuntu-jdk-11.0.1.13-slim
alshabib187f1722015-06-23 16:15:50 -070032
33# Change to /root directory
Ray Milkey6f5b6462018-12-12 15:31:30 -080034RUN mkdir -p /root/onos
Jonathan Hart15a71d82017-07-20 16:14:21 -070035WORKDIR /root/onos
alshabib187f1722015-06-23 16:15:50 -070036
Jonathan Hart77daee82017-01-16 14:29:20 -080037# Install ONOS
Jonathan Hart15a71d82017-07-20 16:14:21 -070038COPY --from=builder /src/tar/ .
alshabib187f1722015-06-23 16:15:50 -070039
Jonathan Hart3e864192017-07-20 19:24:49 -070040# Configure ONOS to log to stdout
41RUN sed -ibak '/log4j.rootLogger=/s/$/, stdout/' $(ls -d apache-karaf-*)/etc/org.ops4j.pax.logging.cfg
42
Jonathan Hart15a71d82017-07-20 16:14:21 -070043LABEL org.label-schema.name="ONOS" \
44 org.label-schema.description="SDN Controller" \
45 org.label-schema.usage="http://wiki.onosproject.org" \
46 org.label-schema.url="http://onosproject.org" \
47 org.label-scheme.vendor="Open Networking Foundation" \
48 org.label-schema.schema-version="1.0"
alshabib187f1722015-06-23 16:15:50 -070049
50# Ports
Charles Chan45624b82015-08-24 00:29:20 +080051# 6653 - OpenFlow
Jonathan Hart77daee82017-01-16 14:29:20 -080052# 6640 - OVSDB
alshabib187f1722015-06-23 16:15:50 -070053# 8181 - GUI
54# 8101 - ONOS CLI
Jonathan Hart15a71d82017-07-20 16:14:21 -070055# 9876 - ONOS intra-cluster communication
Jonathan Hart77daee82017-01-16 14:29:20 -080056EXPOSE 6653 6640 8181 8101 9876
alshabib187f1722015-06-23 16:15:50 -070057
58# Get ready to run command
David Bainbridgeff4fb042015-08-17 12:53:29 -070059ENTRYPOINT ["./bin/onos-service"]
Jonathan Hart3e864192017-07-20 19:24:49 -070060CMD ["server"]