diff --git a/freebsd/etc/containers/vscode/Dockerfile b/freebsd/etc/containers/vscode/Dockerfile
index c54aea5..4987002 100644
--- a/freebsd/etc/containers/vscode/Dockerfile
+++ b/freebsd/etc/containers/vscode/Dockerfile
@@ -3,6 +3,8 @@ FROM ubuntu:latest
 # fix for error "E: Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. Current value: 25165824. (man 5 apt.conf)"
 RUN echo 'APT::Cache-Start "100000000";' >> /etc/apt/apt.conf.d/70debconf
 
+ARG VSCODE_VERSION
+
 RUN apt update && \
     apt install curl git -y && \
     apt clean all && \
@@ -12,5 +14,6 @@ RUN apt update && \
     mkdir /src
 
 VOLUME /src
+VOLUME /root
 
 CMD [ "code", "tunnel", "--accept-server-license-terms", "--no-sleep" ]