From b2d4b9f8c4e5f37fed805acfce70344c0ce3952b Mon Sep 17 00:00:00 2001 From: Mark Hermeling Date: Tue, 24 Aug 2021 17:00:25 +0000 Subject: [PATCH] The [ and ] on the VOLUME line are not needed and causing problems when launching the container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7d28d88..4703d77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,7 @@ COPY scripts/* /opt/ RUN chmod +x /opt/codesonar-exec.sh && \ chmod +x /opt/codesonar-health-check.sh -VOLUME [ /home/codesonar ] +VOLUME /home/codesonar HEALTHCHECK --interval=30s --timeout=30s --start-period=180s --retries=3 CMD /opt/codesonar-health-check.sh -- GitLab