@@ -5,7 +5,7 @@ ARG GIT_USER=queil
55ARG GIT_EMAIL=queil@users.noreply.github.com
66
77ARG HOME=/home/$USER
8- RUN adduser $USER && groupadd docker && usermod -aG docker $USER && chown $USER -R $HOME
8+ RUN adduser $USER && chown $USER -R $HOME
99
1010# Software
1111
@@ -22,14 +22,6 @@ RUN apt-get update && apt-get install -y \
2222 iproute2 \
2323 htop
2424
25- RUN mkdir -m 0755 -p /etc/apt/keyrings && \
26- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg && \
27- echo \
28- "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
29- $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
30-
31- RUN apt-get update && apt-get install -y docker-ce-cli docker-buildx-plugin docker-compose-plugin
32-
3325RUN curl -sSL https://starship.rs/install.sh -o ./install.sh && \
3426 chmod +x ./install.sh && ./install.sh --yes && rm ./install.sh
3527
@@ -48,10 +40,6 @@ RUN curl -sSL https://update.code.visualstudio.com/latest/server-linux-x64/stabl
4840 touch $HOME/.vscode-server/bin/$VSCODE_GIT_HASH/0 && \
4941 rm /tmp/vscode-server-linux-x64.tar.gz
5042
51-
52- ARG ROOZ_VERSION=0.14.0
53- RUN curl -sSL https://github.com/queil/rooz/releases/download/v${ROOZ_VERSION}/rooz -o $HOME/.local/bin/rooz && chmod +x $HOME/.local/bin/rooz
54-
5543RUN git config --global user.name "$GIT_USER" && git config --global user.email "$GIT_EMAIL"
5644
5745COPY --chown=$USER starship.toml .config/
@@ -65,11 +53,6 @@ RUN mkdir .nano && \
6553RUN ln -s /usr/bin/batcat $HOME/.local/bin/bat
6654RUN echo '. $HOME/.custom.sh' >> .bashrc
6755
68- ARG IMAGE_VERSION
69- ENV ROOZ_IMAGE=ghcr.io/queil/image:$IMAGE_VERSION
70- ENV ROOZ_SHELL=bash
71- ENV ROOZ_USER=$USER
72-
7356# VARIANT - DOTNET
7457
7558FROM base as dotnet
0 commit comments