diff --git a/Dockerfile b/Dockerfile
index cc673463266d70f0f98ded8e9201f3c1c69f51a7..a24c611473274baed07c796cd8eca9ad321db9f8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -54,13 +54,14 @@ RUN chmod a+x /usr/bin/xvfb-run
 
 
 USER root
+COPY qt-installer-noninteractive.qs /root/qt-installer-noninteractive.qs
 RUN export XVFBARGS="-screen 0 1280x1024x24" && \
     export DISPLAY=:99  && \
     /etc/init.d/xvfb start && \
     sleep 3  && \
     curl -L https://download.qt.io/official_releases/qt/5.9/5.9.4/qt-opensource-linux-x64-5.9.4.run --output qt-opensource-linux-x64-5.9.4.run && \
     chmod +x qt-opensource-linux-x64-5.9.4.run && \
-    ./qt-opensource-linux-x64-5.9.4.run --script ./qt-installer-noninteractive.qs
+    ./qt-opensource-linux-x64-5.9.4.run --script /root/qt-installer-noninteractive.qs
     
 # Entry point
 USER root