我想知道如何指定不在Dockerfile
内缓存的步骤?
在此示例中,我想缓存npm install
,但是我不想缓存newman run
。我可以在此Dockerfile
内这样做吗?
FROM postman/newman
RUN npm install -g newman-reporter-teamcity
COPY . /etc/newman
# Do not cache
RUN newman run collections.json -x --delay-request 10 -r teamcity