-
Notifications
You must be signed in to change notification settings - Fork 0
/
Containerfile
26 lines (20 loc) · 1016 Bytes
/
Containerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM docker.io/golang:latest
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y libblkid-dev util-linux dosfstools e2fsprogs btrfs-progs xfsprogs gdisk coreutils mdadm vim systemctl && \
apt-get clean
RUN go install golang.org/x/tools/gopls@latest
RUN go install github.com/idubinskiy/schematyper@latest
RUN go install github.com/uudashr/gopkgs/v2/cmd/gopkgs@latest
RUN go install github.com/ramya-rao-a/go-outline@latest
RUN go install github.com/cweill/gotests/gotests@latest
RUN go install github.com/fatih/gomodifytags@latest
RUN go install github.com/josharian/impl@latest
RUN go install github.com/haya14busa/goplay/cmd/goplay@latest
RUN go install github.com/go-delve/delve/cmd/dlv@latest
RUN go install honnef.co/go/tools/cmd/staticcheck@latest
RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
RUN GOBIN=/tmp/ go install github.com/go-delve/delve/cmd/dlv@latest
RUN mv /tmp/dlv /go/bin/dlv-dap
WORKDIR /go/src
ENV PATH="/opt/gtk/bin:${PATH}"