e26f57db78e79ba10c8bf3d668061bbe3064835b
[oam.git] / solution / dev / smo / yang-validator / odl-aluminium / Dockerfile
1 ################################################################################
2 # Copyright 2020 highstreet technologies GmbH and others
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7
8 #     http://www.apache.org/licenses/LICENSE-2.0
9
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 ################################################################################
17 # OpenDaylight docker file
18
19 FROM adoptopenjdk/openjdk11:alpine-slim
20
21 ENV ODL_VERSION=0.13.0
22
23 RUN apk update && \
24     apk add bash && \
25     apk add wget && \ 
26     mkdir /opt/opendaylight
27
28 WORKDIR /opt
29
30 RUN wget https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/opendaylight/${ODL_VERSION}/opendaylight-${ODL_VERSION}.tar.gz
31
32 RUN tar -xvzf opendaylight-${ODL_VERSION}.tar.gz -C opendaylight --strip-components 1 && \
33     rm -rf opendaylight-${ODL_VERSION}.tar.gz
34
35 COPY ./org.apache.karaf.features.cfg /opt/opendaylight/etc/org.apache.karaf.features.cfg
36 COPY ./org.ops4j.pax.logging.cfg /opt/opendaylight/etc/org.ops4j.pax.logging.cfg
37
38 WORKDIR /opt/opendaylight
39
40 EXPOSE 8181 8101
41
42 CMD ["./bin/karaf", "server"]