From 2e493c321e758ac21037daf09957713c4f55f582 Mon Sep 17 00:00:00 2001 From: ViPod5 Date: Wed, 21 Jun 2023 12:15:22 +0200 Subject: [PATCH] Update Dockerfile lstat fails on copy due to path issue --- containers/docker-from-docker/.devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/docker-from-docker/.devcontainer/Dockerfile b/containers/docker-from-docker/.devcontainer/Dockerfile index 68c0a37ed0..80ef0ac191 100644 --- a/containers/docker-from-docker/.devcontainer/Dockerfile +++ b/containers/docker-from-docker/.devcontainer/Dockerfile @@ -20,7 +20,7 @@ ENV DOCKER_BUILDKIT=1 ARG USERNAME=automatic ARG USER_UID=1000 ARG USER_GID=$USER_UID -COPY library-scripts/*.sh /tmp/library-scripts/ +COPY .devcontainer/library-scripts/*.sh /tmp/library-scripts/ RUN apt-get update \ && /bin/bash /tmp/library-scripts/common-debian.sh "${INSTALL_ZSH}" "${USERNAME}" "${USER_UID}" "${USER_GID}" "${UPGRADE_PACKAGES}" "true" "true" \ # Use Docker script from script library to set things up @@ -36,4 +36,4 @@ CMD [ "sleep", "infinity" ] # [Optional] Uncomment this section to install additional OS packages. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ -# && apt-get -y install --no-install-recommends \ No newline at end of file +# && apt-get -y install --no-install-recommends