I am trying to setup a docker container and am using RUN ls
to help debug. However, when I run RUN ls
, docker prints out the following:
---> Using cache
---> 96223b1b0748
I am expecting it to log out files in the folder. Does anyone know what might be happening?
Here is my full Dockerfile:
FROM node:latest
WORKDIR /app
COPY app .
RUN ls
Thanks in advance!