updated base image
This commit is contained in:
parent
702d2b8890
commit
bcf02a056f
@ -2,11 +2,11 @@
|
|||||||
# Written by Wyatt J. Miller, 2023, 2024
|
# Written by Wyatt J. Miller, 2023, 2024
|
||||||
# This image is opinionated, but you're welcome to customize as much as you like
|
# This image is opinionated, but you're welcome to customize as much as you like
|
||||||
|
|
||||||
# Start with the Fedora 39 image
|
# Start with the Fedora 40 image
|
||||||
FROM registry.fedoraproject.org/fedora-toolbox:39
|
FROM registry.fedoraproject.org/fedora-toolbox:40
|
||||||
|
|
||||||
# Label it right, ya know?
|
# Label it right, ya know?
|
||||||
ENV NAME=custom_base_image VERSION=1.2
|
ENV NAME=base_container VERSION=1.3
|
||||||
LABEL com.github.containers.toolbox="true" \
|
LABEL com.github.containers.toolbox="true" \
|
||||||
com.redhat.component="$NAME" \
|
com.redhat.component="$NAME" \
|
||||||
name="$NAME" \
|
name="$NAME" \
|
||||||
@ -23,14 +23,14 @@ RUN dnf install neovim tmux git fish zsh bat exa starship zellij wget unzip ansi
|
|||||||
RUN dnf groupinstall "C Development Tools and Libraries" -y -q
|
RUN dnf groupinstall "C Development Tools and Libraries" -y -q
|
||||||
|
|
||||||
# Install atuin (magical shell history)
|
# Install atuin (magical shell history)
|
||||||
RUN curl -L https://github.com/atuinsh/atuin/releases/download/v18.0.2/atuin-v18.0.2-x86_64-unknown-linux-gnu.tar.gz --output atuin-v18.0.2-x86_64-unknown-linux-gnu.tar.gz
|
RUN curl -L https://github.com/atuinsh/atuin/releases/download/v18.2.0/atuin-v18.2.0-x86_64-unknown-linux-gnu.tar.gz --output atuin-v18.2.0-x86_64-unknown-linux-gnu.tar.gz
|
||||||
RUN tar xvzf atuin-v18.0.2-x86_64-unknown-linux-gnu.tar.gz
|
RUN tar xvzf atuin-v18.2.0-x86_64-unknown-linux-gnu.tar.gz
|
||||||
RUN cp ./atuin-v18.0.2-x86_64-unknown-linux-gnu/atuin /usr/local/bin/atuin
|
RUN cp ./atuin-v18.2.0-x86_64-unknown-linux-gnu/atuin /usr/local/bin/atuin
|
||||||
RUN rm -rf atuin-v18.0.2-x86_64-unknown-linux-gnu/
|
RUN rm -rf atuin-v18.2.0-x86_64-unknown-linux-gnu/
|
||||||
|
|
||||||
# Install lazygit (don't you know??)
|
# Install lazygit (don't you know??)
|
||||||
RUN curl -L https://github.com/jesseduffield/lazygit/releases/download/v0.40.2/lazygit_0.40.2_Linux_x86_64.tar.gz --output lazygit_0.40.2_Linux_x86_64.tar.gz
|
RUN curl -L https://github.com/jesseduffield/lazygit/releases/download/v0.41.0/lazygit_0.41.0_Linux_x86_64.tar.gz --output lazygit_0.41.0_Linux_x86_64.tar.gz
|
||||||
RUN tar xvzf lazygit_0.40.2_Linux_x86_64.tar.gz
|
RUN tar xvzf lazygit_0.41.0_Linux_x86_64.tar.gz
|
||||||
RUN cp ./lazygit /usr/local/bin/lazygit
|
RUN cp ./lazygit /usr/local/bin/lazygit
|
||||||
RUN rm LICENSE README.md lazygit
|
RUN rm LICENSE README.md lazygit
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user