From 0cef2773657639185e523484d563e64641d49c9b Mon Sep 17 00:00:00 2001 From: Adam Leskis Date: Tue, 31 Jan 2023 22:05:48 +0000 Subject: [PATCH] remove unnecessary RUN command WORKDIR already runs "mkdir -p" under the hood, so we don't need to add this extra command (and layer) to the Dockerfile. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 31405d7..21bf845 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,6 @@ RUN install_packages \ bzip2 # Helper scripts -RUN mkdir /build WORKDIR /build ADD .git .git ADD .github .github