Fix missing use of config file
[ric-plt/ricdms.git] / Dockerfile
1 #   Copyright (c) 2022 Samsung.
2 #
3 #   Licensed under the Apache License, Version 2.0 (the "License");
4 #   you may not use this file except in compliance with the License.
5 #   You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #   Unless required by applicable law or agreed to in writing, software
10 #   distributed under the License is distributed on an "AS IS" BASIS,
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #   See the License for the specific language governing permissions and
13 #   limitations under the License.
14
15 #-----------------------------------------------------------
16
17 FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu18-c-go:1.9.0 AS dms-build
18
19 RUN apt-get update -y && apt-get install -y jq
20
21 # Update CA certificates
22 RUN apt update && apt install --reinstall -y \
23   ca-certificates \
24   && \
25   update-ca-certificates
26
27 ENV PATH="/usr/local/go/bin:${PATH}"
28
29 ENV GOPATH="/go"
30
31 # Swagger
32 RUN mkdir -p /go/bin
33 RUN cd /go/bin \
34     && wget --quiet https://github.com/go-swagger/go-swagger/releases/download/v0.29.0/swagger_linux_amd64 \
35     && mv swagger_linux_amd64 swagger \
36     && chmod +x swagger
37
38 RUN mkdir -p /go/bin
39 RUN mkdir -p /go/src/ws
40 WORKDIR "/go/src/ws"
41
42 # Module prepare (if go.mod/go.sum updated)
43 COPY go.mod /go/src/ws
44 COPY go.sum /go/src/ws
45 RUN GO111MODULE=on go mod download
46
47 # build and test
48 COPY . /go/src/ws
49
50 # Generate Swagger code
51 RUN /go/bin/swagger generate server -f api/ric-dms-api-2.0.yaml -t pkg/ --exclude-main
52
53 # Build the code
54 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o /go/src/ws/cache/go/cmd/ric-dms cmd/ric-dms.go
55
56 # Run unit tests
57 #RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/resthooks/
58
59 RUN gofmt -l $(find cmd/ pkg/  -name '*.go' -not -name '*_test.go')
60
61 CMD ["/bin/bash"]
62
63
64 #----------------------------------------------------------
65 FROM ubuntu:18.04 as ric-dms
66
67 RUN apt-get update -y \
68     && apt-get install --reinstall -y sudo openssl ca-certificates ca-cacert \
69     && apt-get clean && update-ca-certificates
70
71 #
72 # ric-dms
73 #
74 RUN mkdir -p /opt/dms \
75     && chmod -R 755 /opt/dms
76
77 COPY --from=dms-build /go/src/ws/cache/go/cmd/ric-dms /opt/dms/ric-dms
78 COPY --from=dms-build /go/src/ws/config/config.yaml /opt/dms/config.yaml
79 WORKDIR /opt/dms
80
81 COPY dms-entrypoint.sh /opt/dms/
82
83 ARG default_config=/opt/dms/config.yaml
84 ENV RIC_DMS_CONFIG_FILE=$default_config
85
86 ENTRYPOINT ["/opt/dms/dms-entrypoint.sh"]