From 81761195563c82c975591aa3b91600fb4ea0fb91 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Mon, 1 Jan 2024 20:34:58 -0500 Subject: [PATCH] Dockerfile: Use CMD instead of ENTRYPOINT This corrects ci behaviour, allowing this image to now be used like this: docker run --rm -it guix-builder:latest Where is any executable on the containers PATH. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ff20b6f..4a67e66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,4 +11,4 @@ ENV PROOT_TMP_DIR=/tmp/proot RUN rm /tmp/proot/delete-me VOLUME /var/guix/daemon-socket/socket /gnu/store /etc/ssl -ENTRYPOINT ["/guix-builder/bin/bash"] +CMD ["/guix-builder/bin/bash"]