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 <cmd>

Where <cmd> is any executable on the containers PATH.
This commit is contained in:
Collin J. Doering 2024-01-01 20:34:58 -05:00
parent 735222139a
commit 8176119556
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 1 additions and 1 deletions

View File

@ -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"]