Add validation for uniqueness of CA names
[oom/platform/cert-service.git] / certService / Dockerfile
index ff8a422..770dab9 100644 (file)
@@ -1,9 +1,11 @@
 FROM docker.io/openjdk:11-jre-slim
 
-ARG VERSION=${project.version}
+ARG VERSION=${version}
 
 RUN groupadd certService && useradd -g certService certService
 
+RUN apt-get update && apt-get install -y vim curl
+
 RUN chown -R certService:certService /var/log
 
 USER certService:certService