eekboek (2.04)
Published 2025-11-16 12:23:44 +00:00 by floris
Installation
docker pull git.floqui.nl/floris/eekboek:2.04sha256:9eaba8138a721489629ff9547a2af58b19aa5e367b19c9b01324adf1b4ae36fbImage layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1754870400' |
| ARG USERNAME=eekboek |
| ARG USER_UID=1000 |
| ARG USER_GID=1000 |
| RUN |3 USERNAME=eekboek USER_UID=1000 USER_GID=1000 /bin/sh -c groupadd --gid $USER_GID $USERNAME && useradd --uid $USER_UID --gid $USER_GID --create-home --shell /bin/bash $USERNAME && echo "$USERNAME ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers # buildkit |
| RUN |3 USERNAME=eekboek USER_UID=1000 USER_GID=1000 /bin/sh -c mkdir -p /home/eekboek/.eekboek && chown -R $USERNAME:$USERNAME /home/eekboek/.eekboek # buildkit |
| WORKDIR /home/eekboek/.eekboek |
| RUN |3 USERNAME=eekboek USER_UID=1000 USER_GID=1000 /bin/sh -c apt-get update && apt-get install -y eekboek && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit |
| CMD ["ebshell"] |