Code Review
/
dcaegen2
/
services.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
2760519
)
[PMSH] Adding vim-tiny as a text editor
28/108928/2
author
ERIMROB
<robertas.rimkus@est.tech>
Mon, 8 Jun 2020 15:35:39 +0000
(16:35 +0100)
committer
ERIMROB
<robertas.rimkus@est.tech>
Fri, 12 Jun 2020 07:53:03 +0000
(08:53 +0100)
Signed-off-by: ERIMROB <robertas.rimkus@est.tech>
Change-Id: Ic596e9606add42d065a0ef299c2519f72883021f
Issue-ID: DCAEGEN2-2155
components/pm-subscription-handler/Dockerfile
patch
|
blob
|
history
diff --git
a/components/pm-subscription-handler/Dockerfile
b/components/pm-subscription-handler/Dockerfile
index
270b97a
..
566b2ab
100644
(file)
--- a/
components/pm-subscription-handler/Dockerfile
+++ b/
components/pm-subscription-handler/Dockerfile
@@
-33,6
+33,9
@@
WORKDIR $APPDIR
# add non root user & group
RUN addgroup --system $PMSHUSER && adduser --ingroup $PMSHUSER --system $PMSHUSER && \
# create and chown the LOGS_PATH
+ apt-get update && \
+ apt-get install -y --no-install-recommends vim-tiny && \
+ apt-get clean && rm -rf /var/lib/apt/lists/* && \
mkdir -p $LOGS_PATH && \
chown -R $PMSHUSER:$PMSHUSER $LOGS_PATH