NONRTRIC-946: Capifcore - remove comment
[nonrtric/plt/sme.git] / capifcore / Dockerfile
index ed97579..7c05e4a 100644 (file)
@@ -13,8 +13,6 @@
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 #
-#   This source code is part of the near-RT RIC (RAN Intelligent Controller)
-#   platform project (RICP).
 #==================================================================================
 
 ##
@@ -30,9 +28,16 @@ RUN go build -o /capifcore
 ##
 ## Deploy
 ##
-FROM gcr.io/distroless/base-debian11
+FROM ubuntu
 WORKDIR /
 ## Copy from "build" stage
 COPY --from=build /capifcore .
-USER nonroot:nonroot
+
+RUN mkdir /configs
+RUN mkdir /certs
+
+COPY configs/keycloak.yaml /configs/keycloak.yaml
+COPY certs/cert.pem /certs/cert.pem
+COPY certs/key.pem /certs/key.pem
+
 ENTRYPOINT ["/capifcore"]