It grows...

This commit is contained in:
Johannes Findeisen 2025-06-08 02:53:09 +02:00
commit b952f3591c
3 changed files with 47 additions and 51 deletions

View file

@ -10,9 +10,9 @@ ENV \
WORKDIR /root
# Do this because next steps require some software packages to be installed
RUN apk add --no-cache alpine-sdk ca-certificates perl protobuf
RUN apk add --no-cache alpine-sdk ca-certificates perl
# Install Rust
# Install Rust (Copied from the official Rust Dockerfile)
RUN set -eux; \
apkArch="$(apk --print-arch)"; \
case "$apkArch" in \
@ -32,23 +32,19 @@ RUN set -eux; \
rustc --version;
# Install Rust based applications
RUN git clone --branch v0.7.1 --single-branch https://github.com/boxdot/gurk-rs.git gurk
RUN cargo build --manifest-path /root/gurk/Cargo.toml --profile release
RUN cp /root/gurk/target/release/gurk /usr/bin/
#RUN git clone --branch v0.7.1 --single-branch https://github.com/boxdot/gurk-rs.git gurk; \
# cargo build --manifest-path /root/gurk/Cargo.toml --profile release; \
# cp /root/gurk/target/release/gurk /usr/bin/
RUN git clone --branch 25.01.1 --single-branch https://github.com/helix-editor/helix.git helix
RUN cargo build --manifest-path /root/helix/Cargo.toml --profile release
RUN cp /root/helix/target/release/hx /usr/bin/
# Setup environment
RUN apk update; \
apk upgrade --available; \
apk add --no-cache bash helix mc openssh shadow tmux vim zsh zsh-vcs neovim
# System setup
RUN apk update
RUN apk upgrade --available
RUN apk add --no-cache bash mc openssh shadow tmux vim zsh zsh-vcs neovim
RUN chsh -s /bin/zsh root
RUN useradd -M -u 1000 -U -s /bin/zsh -d /home/hanez hanez
RUN useradd -M -u 1001 -U -s /bin/bash -d /home/test test
RUN useradd -M -u 1002 -U -s /bin/bash -d /home/test test2
RUN chsh -s /bin/zsh root; \
useradd -M -u 1000 -U -s /bin/zsh -d /home/hanez hanez; \
useradd -M -u 1001 -U -s /bin/bash -d /home/test test; \
useradd -M -u 1002 -U -s /bin/bash -d /home/test2 test2
# This is obsolete since I use docker-compose for managing the container
ENTRYPOINT ["bash"]