Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
firefart committed Dec 5, 2024
1 parent a53cdb6 commit a8a82d3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ LABEL org.opencontainers.image.source="https://github.com/firefart/dockerctf"
LABEL org.opencontainers.image.description="Docker CTF image"

# https://go.dev/dl/
ARG GOLANG_VERSION="1.23.3"
ARG GOLANG_SHASUM="a0afb9744c00648bafb1b90b4aba5bdb86f424f02f9275399ce0c20b93a2c3a8"
ARG GOLANG_VERSION="1.23.4"
ARG GOLANG_SHASUM="6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971"
# https://aws.amazon.com/corretto/
ARG JAVA_VERSION="23"
# https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu
ARG DOTNET_VERSION="8.0"
ARG DOTNET_VERSION="9.0"
# https://portswigger.net/burp/releases/community/latest
ARG BURP_VERSION="2024.9.4"
ARG BURP_VERSION="2024.10.3"
# https://github.com/nodesource/distributions#debian-and-ubuntu-based-distributions
ARG NODE_VERSION="23"

Expand Down Expand Up @@ -156,12 +156,12 @@ RUN git clone --recurse-submodules --depth 1 https://github.com/firefart/dotfile
ENV EDITOR=nvim

# set nvim everywhere
RUN update-alternatives --install /usr/bin/editor editor /opt/nvim-linux64/bin/nvim 1 && \
update-alternatives --set editor /opt/nvim-linux64/bin/nvim && \
update-alternatives --install /usr/bin/vi vi /opt/nvim-linux64/bin/nvim 1 && \
update-alternatives --set vi /opt/nvim-linux64/bin/nvim && \
update-alternatives --install /usr/bin/vim vim /opt/nvim-linux64/bin/nvim 1 && \
update-alternatives --set vim /opt/nvim-linux64/bin/nvim
RUN update-alternatives --install /usr/bin/editor editor /opt/neovim/bin/nvim 1 && \
update-alternatives --set editor /opt/neovim/bin/nvim && \
update-alternatives --install /usr/bin/vi vi /opt/neovim/bin/nvim 1 && \
update-alternatives --set vi /opt/neovim/bin/nvim && \
update-alternatives --install /usr/bin/vim vim /opt/neovim/bin/nvim 1 && \
update-alternatives --set vim /opt/neovim/bin/nvim

# install go
RUN url="https://golang.org/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz" && \
Expand Down

0 comments on commit a8a82d3

Please sign in to comment.