diff --git a/Dockerfile b/Dockerfile
index 8074ce8..945e4fe 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -43,7 +43,7 @@ RUN useradd -m -s /bin/bash -G sudo coder && \
 RUN echo "PS1='🐳 \[\033[1;36m\] \[\033[1;34m\]\W\[\033[0;35m\] \[\033[1;36m\]# \[\033[0m\]'" > /home/coder/.bashrc && \
     mkdir -p /workspaces && \
     chown coder:coder /home/coder/.bashrc && \
-    chown -R coder:coder /workspaces \
+    chown -R coder:coder /workspaces
 
 # Run trivy to scan the system. Exit code is set to 0 as 1 would never allow to pass the scan due to debian known vulns
 RUN curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin \