diff --git a/Dockerfile.dev b/Dockerfile.dev
index deaf3518bf515c7bf29830470e42bcfb0851519c..d7ee9d1a370ffd9e392bc2b72b057220dba6df90 100644
--- a/Dockerfile.dev
+++ b/Dockerfile.dev
@@ -15,4 +15,4 @@ WORKDIR /app
 RUN go build -o main .
 ## Our start command which kicks off
 ## our newly created binary executable
-CMD ["/app/main -env=dev"]
\ No newline at end of file
+CMD ["/app/main", "-env=dev"]
diff --git a/Dockerfile.prod b/Dockerfile.prod
index 46122e346a43255c78d40f783af74d3d752208aa..6edf47d56b3f725233b2421a84cdcf04f0e6371e 100644
--- a/Dockerfile.prod
+++ b/Dockerfile.prod
@@ -15,4 +15,4 @@ WORKDIR /app
 RUN go build -o main .
 ## Our start command which kicks off
 ## our newly created binary executable
-CMD ["/app/main -env=prod"]
\ No newline at end of file
+CMD ["/app/main", "-env=prod"]