From 615a5bce22f33a1cab1532181936d2b3fec3bad5 Mon Sep 17 00:00:00 2001 From: To-om Date: Mon, 29 Mar 2021 18:42:49 +0200 Subject: [PATCH] #1908 Include /opt/thp in Docker image --- docker.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker.sbt b/docker.sbt index 60d0f5fe54..94a925c413 100644 --- a/docker.sbt +++ b/docker.sbt @@ -47,7 +47,7 @@ dockerCommands := Seq( Cmd("ADD", "--chown=thehive:thehive", "var", "/var"), Cmd("ADD", "--chown=thehive:thehive", "etc", "/etc"), ExecCmd("RUN", "chmod", "+x", "/opt/thehive/bin/thehive", "/opt/thehive/entrypoint"), - Cmd("RUN", "mkdir", "/data", "&&", "chown", "thehive:thehive", "/data"), + Cmd("RUN", "mkdir", "/data", "/opt/thp", "&&", "chown", "thehive:thehive", "/data", "/opt/thp"), Cmd("EXPOSE", "9000"), Cmd("USER", "thehive"), ExecCmd("ENTRYPOINT", "/opt/thehive/entrypoint"),