Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rpherrera/a8cc79d1bd860c321253 to your computer and use it in GitHub Desktop.
Save rpherrera/a8cc79d1bd860c321253 to your computer and use it in GitHub Desktop.
that error message was solved changing the order of instructions... basically something happens after running the "move" procedure that leads to the related error
WORKDIR /workspace
RUN jdk-6u45-windows-x64.exe /s
RUN unzip.exe jboss-5.1.0.GA-jdk6.zip
+RUN unzip.exe -o deploy.zip -d jboss-5.1.0.GA\server\default\deploy
RUN move jboss-5.1.0.GA C:\jboss-5.1.0.GA
-
-#RUN unzip.exe -o deploy.zip -d C:\jboss-5.1.0.GA\server\default\deploy
COPY /oracle-ds.xml \jboss-5.1.0.GA\server\default\deploy
@rpherrera
Copy link
Author

related gist with the error message:
https://gist.github.com/rpherrera/1ddef6927982a4cee2fa#file-windows-server-core-docker-build-error-00-log

first message related to some conversation in #docker-dev channel from irc.freenode.net:
https://botbot.me/freenode/docker-dev/2016-03-02/?msg=61400896&page=2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment