From 295528c3b2d6fe27d21db9d7314417e5f9242d3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20=C3=81lvaro?= Date: Tue, 20 Sep 2022 22:16:24 +0200 Subject: [PATCH] fix(Dockerfile): Add slash on COPY command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1acdd2d..72f7c5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,7 @@ RUN bash ${SALT_BUILD_DIR}/install.sh COPY assets/runtime ${SALT_RUNTIME_DIR} RUN chmod -R +x ${SALT_RUNTIME_DIR} -COPY assets/sbin/* /usr/local/sbin +COPY assets/sbin/* /usr/local/sbin/ # Cleaning tasks RUN rm -rf "${SALT_BUILD_DIR:?}"/*