Tools, FAQ, Tutorials:
Path Name Used to Build Windows Images
What is the format for path names used to build Windows Docker images? Is it different than Linux path name format?
✍: FYIcenter.com
Yes. Path name format used to build Windows images is different from Linux images.
There are 2 general rules you have to remember when using path names in the Dockerfile to build Windows images.
1. When using path names as arguments for Windows programs, you need to use the "C:\bla\bla" Windows format.
2. When using path names as destinations of the COPY instruction, you need to use the "C:/bla/bla" Linux format.
Here is Dockerfile example, JavaImage, that uses path names:
C:\fyicenter> type JavaImage FROM openjdk RUN PowerShell mkdir C:\fyicenter COPY Hello.java C:/fyicenter/Hello.java RUN javac C:\fyicenter\Hello.java ENTRYPOINT java -cp C:\fyicenter Hello
Build and run it.
C:\fyicenter> docker build --file JavaImage --tag myjava . Sending build context to Docker daemon 12.88MB Step 1/5 : FROM openjdk ---> fdc7d8d04bc9 Step 2/5 : RUN PowerShell mkdir C:\fyicenter ---> Using cache ---> 017ae562fd5c Step 3/5 : COPY Hello.java C:/fyicenter/Hello.java ---> 71f4e71faecc Step 4/5 : RUN javac C:\fyicenter\Hello.java ---> Running in d975fb266549 C:\fyicenter> docker run --name myjava myjava Hello world! C:\fyicenter> docker rm myjava myjava
Ok, we are able to build our own Java Docker image with a Java program in sub-directory instead of the root directory.
For more information, see Containers on Windows Documentation.
⇒ Spaces in Path Name on Windows Images
⇐ Build My Java Image with "openjdk"
2021-11-30, 1077🔥, 0💬
Popular Posts:
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...
How to pull NVIDIA CUDA Docker Image with the "docker image pull nvidia/cuda" command? If you are ru...
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...
How to access Query String parameters from "context.Request.Url.Que ry"object in Azure API Policy? Q...
How to use the "@(...)" expression in Azure API Policy? The "@(...)" expression in Azure API Policy ...