seed code of des (data extraction service)
[dcaegen2/services.git] / components / datalake-handler / des / Dockerfile
1 # ============LICENSE_START===================================================
2 #  Copyright (C) 2020 China Mobile.
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 # SPDX-License-Identifier: Apache-2.0
17 # ============LICENSE_END=====================================================
18 FROM openjdk:11-jre-slim
19
20 MAINTAINER Guobiao Mo <guobiaomo@chinamobile.com>
21
22 EXPOSE 1681
23
24 RUN groupadd -r datalake && useradd -r -g datalake datalake
25 RUN mkdir /home/datalake/
26
27 USER datalake
28  
29 WORKDIR /home/datalake
30
31 #add the fat jar
32 COPY target/${JAR_FILE} /home/datalake/
33 COPY src/assembly/run.sh /home/datalake/
34
35 WORKDIR /home/datalake/db_init
36 ADD src/assembly/init_db/scripts/db_init .
37 USER root
38 RUN chmod 0755 ./*
39 WORKDIR /home/datalake
40 COPY src/assembly/init_db/scripts/init_db.sql .
41 COPY src/assembly/init_db/scripts/init_db_data.sql .
42
43 RUN apt update && \
44     apt install -y mariadb-client && \
45     apt install -y curl
46
47 USER datalake
48
49 CMD ["sh", "run.sh"]
50