From adb6871bf3d6d0dc3b77fd495520eba407b77963 Mon Sep 17 00:00:00 2001 From: Gavin Staniforth Date: Mon, 1 Nov 2021 09:09:33 +0000 Subject: [PATCH] fix: correct apply --no-cache --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3c28d7e..66bbd38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV SLACK_SIGNING_SECRET="" ENV PORT=8080 ENV SSH_KNOWN_HOSTS="/etc/ssh/ssh_known_hosts" -RUN apk add -no-cache openssh-client && ssh-keyscan -H github.com >> /etc/ssh/ssh_known_hosts +RUN apk add --no-cache openssh-client && ssh-keyscan -H github.com >> /etc/ssh/ssh_known_hosts ENTRYPOINT ["/gitops-commit"] COPY gitops-commit / \ No newline at end of file