aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorJack Lucas <jflos@sonoris.net>2021-06-29 15:11:24 -0400
committerJack Lucas <jflos@sonoris.net>2021-07-01 11:45:44 -0400
commit3894346dff6ec673db5cbd49395328791e7c5fe1 (patch)
tree340ff8cb6b4424a600ed6b04838bbcb28a6a44ea /Dockerfile
parent59e8a4df36611631c20213c632c6809317039d3a (diff)
Remove VOLUME definition from PH Dockerfile5.1.3
The DCAE policy handler Dockerfile defined a VOLUME at a relative path "logs". The VOLUME isn't needed and in some deployment environments prevents the policy handler from starting. Removing it. Issue-ID: DCAEGEN2-2849 Signed-off-by: Jack Lucas <jflos@sonoris.net> Change-Id: Ie8a9610880d518bb53c7bd2d414026a7c8af7e77
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index eb8c581..40ab6ac 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,7 @@
# ================================================================================
# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
# Copyright 2020 Deutsche Telekom. All rights reserved.
+# Copyright (c) 2021 J. F. Lucas. 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.
@@ -51,7 +52,5 @@ RUN mkdir -p logs \
USER $user
-VOLUME logs
-
# Run run_policy.sh when the container launches
CMD ["./run_policy.sh"]