Update compute build & run for new base
[integration/packaging.git] / docker / debian / Dockerfile
1 FROM debian:7
2
3 # Schema: https://github.com/projectatomic/ContainerApplicationGenericLabels
4 LABEL name="Int/Pack Debian Dockerfile" \
5       version="5.2" \
6       vendor="OpenDaylight" \
7       summary="OpenDaylight Integration/Packaging example Debian Dockerfile" \
8       vcs-url="https://git.opendaylight.org/gerrit/p/integration/packaging.git"
9
10 # Install OpenDaylight
11 RUN apt-get install -y http://download.opensuse.org/repositories/home:/akshitajha/xUbuntu_16.04/all/opendaylight_5.0.0-1_all.deb && apt-get clean
12
13 # Ports
14 # 8101 - Karaf SSH
15 # Installing additional ODL features may require opening additional ports.
16 # https://wiki.opendaylight.org/view/Ports
17 EXPOSE 8101
18
19 # Start OpenDaylight
20 CMD ["/opt/opendaylight/bin/karaf"]