Accessing static files in Spring boot docker container image
I've managed to create a docker image. And under the Docker Container files section I am able to see the directory as is. My working directory : "usr/local/bin/ClientApp" Dockerfile: FROM openjdk:11 EXPOSE 8080 WORKDIR /usr/local/bin/ClientApp ADD . . ADD target/ClientApp-0.0.1-SNAPSHOT.jar…