Docker COPY no such file or directory
问题 Building docker image fails on copy task. No such file or directory. I am using the hello world example from spring Building from openjdk:8-jdk-alpine Run echo ${PWD} prints / Run ls prints a set of normal directories (/usr /var etc) but no project files are present Why is docker not using the WORKING directory? FROM openjdk:8-jdk-alpine VOLUME /tmp ARG DEPENDENCY=target/dependency COPY ${DEPENDENCY}/BOOT-INF/lib /app/lib COPY ${DEPENDENCY}/META-INF /app/META-INF COPY ${DEPENDENCY}/BOOT-INF