Added payload logging and configurable duplicate check
[sim/a1-interface.git] / near-rt-ric-simulator / Dockerfile
index b079d73..8b08972 100644 (file)
@@ -1,5 +1,5 @@
 #  ============LICENSE_START===============================================
-#  Copyright (C) 2020 Nordix Foundation. All rights reserved.
+#  Copyright (C) 2021 Nordix Foundation. All rights reserved.
 #  ========================================================================
 #  Licensed under the Apache License, Version 2.0 (the "License");
 #  you may not use this file except in compliance with the License.
 
 FROM python:3.8-slim-buster
 
-WORKDIR /usr/src/app
-
 RUN pip install connexion[swagger-ui]
 
-#install nginx
-RUN apt-get update
-RUN apt-get install -y nginx=1.14.*
-RUN apt-get install -y nginx-extras
+#install nginx and curl
+RUN apt-get update && apt-get install -y nginx=1.14.* nginx-extras curl
 
-#install curl
-RUN apt-get install -y curl
+WORKDIR /usr/src/app
 
-COPY src src
 COPY api api
 COPY nginx.conf nginx.conf
 COPY certificate /usr/src/app/cert
+COPY src src
 
 RUN chmod +x src/start.sh
 CMD src/start.sh ${A1_VERSION}