37 lines
1.1 KiB
Docker
37 lines
1.1 KiB
Docker
FROM registry.fedoraproject.org/fedora-toolbox:39
|
|
|
|
# Install vscode repo
|
|
RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc
|
|
RUN sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc"> /etc/yum.repos.d/vscode.repo'
|
|
|
|
RUN dnf update -y \
|
|
&& dnf install -y \
|
|
code \
|
|
golang \
|
|
neovim \
|
|
pinentry \
|
|
pipx \
|
|
python3 \
|
|
zsh \
|
|
&& dnf clean -y all
|
|
|
|
# Install some python tools
|
|
RUN PIPX_HOME=/usr/local/lib/pipx PIPX_BIN_DIR=/usr/local/bin pipx install \
|
|
poetry \
|
|
ipython
|
|
|
|
# Install some go tools
|
|
ENV GOBIN=/usr/local/bin
|
|
RUN go install github.com/haya14busa/goplay/cmd/goplay@latest \
|
|
&& go install github.com/go-delve/delve/cmd/dlv@latest \
|
|
&& go install golang.org/x/tools/gopls@latest \
|
|
&& go install honnef.co/go/tools/cmd/staticcheck@latest \
|
|
&& go install github.com/fatih/gomodifytags@latest \
|
|
&& go install github.com/josharian/impl@latest \
|
|
&& go install github.com/cweill/gotests/gotests@latest \
|
|
&& go install golang.org/x/vuln/cmd/govulncheck@latest \
|
|
&& rm -rf /root/go
|
|
|
|
ENV GOBIN=
|
|
|