Merge "JUnit test case coverage for Condition.java, JsonLock.java, MusicLockState...
[music.git] / music-rest / distribution / music / Dockerfile
1 #
2 # ============LICENSE_START==========================================
3 # org.onap.music
4 # ===================================================================
5 #  Copyright (c) 2019 AT&T Intellectual Property
6 # ===================================================================
7 #  Licensed under the Apache License, Version 2.0 (the "License");
8 #  you may not use this file except in compliance with the License.
9 #  You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #  Unless required by applicable law or agreed to in writing, software
14 #  distributed under the License is distributed on an "AS IS" BASIS,
15 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #  See the License for the specific language governing permissions and
17 #  limitations under the License.
18 #
19 # ============LICENSE_END=============================================
20 # ====================================================================
21
22 FROM openjdk:8
23 LABEL purpose="Springboot for MUSIC"
24 RUN apt-get update && apt-get install -y netcat telnet vim vim-common curl
25 RUN groupadd --gid 1000 music && useradd --gid 1000 --uid 1000 music
26 RUN mkdir -p /opt/app/music/logs/MUSIC
27 COPY MUSIC-SB.jar /opt/app/music
28 COPY startup.sh /opt/app/music
29 RUN mkdir -p /opt/app/music/logs && \
30     mkdir -p /opt/app/music/etc && \
31     chown -R music:music /opt/app/music/ && \
32     chmod 755 /opt/app/music/startup.sh
33 USER music:music
34 WORKDIR /opt/app/music
35 CMD ["/opt/app/music/startup.sh"]