WORKDIR /build
COPY . /build
RUN ./docker-build-scripts/build.sh
-RUN ./build/src/demo/demo > demo-output.txt 2>&1 && convert output.bmp output.png && curl --upload-file ./output.png https://transfer.sh/output.png && echo && curl --upload-file ./demo-output.txt https://transfer.sh/demo-output.txt && echo || echo running failed
+RUN ./build/src/demo/demo > demo-output.txt 2>&1 && convert output.bmp output.png && curl -sS --upload-file ./output.png https://transfer.sh/output.png && echo && curl -sS --upload-file ./demo-output.txt https://transfer.sh/demo-output.txt && echo || echo running failed
CMD ["/bin/bash"]