Add DR provisioning client initContainer
[dmaap/datarouter.git] / datarouter-prov-client / src / main / resources / Dockerfile
1 #  ============LICENSE_START====================================================
2 #  Copyright (C) 2023 J. F. Lucas.  All rights reserved.
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 #  ============LICENSE_END====================================================
16 #
17 FROM alpine:3.18.0
18
19 MAINTAINER DMAAP Team
20
21 COPY /opt /opt
22
23 WORKDIR /opt/app/drprov-client
24
25 # Install curl, jq, and gettext
26 RUN apk add --no-cache curl jq gettext
27
28 RUN chmod +x /opt/app/drprov-client/bin/*
29
30 RUN addgroup -S -g 1001 onap \
31     && adduser -S -u 1000 onap -G onap \
32     && chown -R onap:onap /opt/
33
34 USER onap
35
36 ENTRYPOINT ["sh", "/opt/app/drprov-client/bin/drprov-client.sh" ]