summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Leskis <adam.leskis@mention-me.com>2023-01-31 22:05:48 +0000
committerThomas Buckley-Houston <tom@tombh.co.uk>2023-02-02 18:37:35 -0500
commit0cef2773657639185e523484d563e64641d49c9b (patch)
tree4099c6a36a300ed7f050a1a57a70f43405c8b85e
parentacaa7d64592342c9e0aa9744d00ef597b432bd99 (diff)
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.
-rw-r--r--Dockerfile1
1 files changed, 0 insertions, 1 deletions
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