Commit d0180db1 authored by Chris Rose's avatar Chris Rose
Browse files

fixed the /src/ volume for windows builds

parent 6acc850f
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -42,7 +42,10 @@ RUN set -x \
# install pyinstaller
RUN /usr/bin/pip install pyinstaller==$PYINSTALLER_VERSION

VOLUME /wine/drive_c/src/
# put the src folder inside wine
RUN mkdir /src/ && ln -s /src /wine/drive_c/src
VOLUME /src/
WORKDIR /wine/drive_c/src/
RUN mkdir -p /wine/drive_c/tmp

CMD pip install -r requirements.txt && pyinstaller --clean -y --dist ./dist/windows --workpath /tmp *.spec