How to reference embedded Docker resource files using file path URL
问题 I have created a Docker image and embedded some static resource files within it, using the following command in the Dockerfile: COPY resources /resources I have a java web application running within the Docker container which requires access to these static files. File paths must be provided using a URL, E.g.: file://c:/resources/myresourcefile.css I am able to construct the URL programmatically but am unsure if embedded files can be referenced this way. Any guidance would be appreciated!