forked from mlg404/palworld-paldex-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
24 lines (19 loc) · 842 Bytes
/
Copy pathDockerfile
File metadata and controls
24 lines (19 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ubuntu:latest
WORKDIR /app
# Necessary for Gpg Sign in Devcontainer
RUN apt update && apt install --no-install-recommends -y \
git gpg gnupg gpg-agent socat
# Install Go
COPY --from=golang:latest /usr/local/go /usr/local/go
ENV GOROOT=/usr/local/go
ENV PATH=$GOROOT/bin:$PATH
RUN go install golang.org/x/tools/gopls@latest && \
go install honnef.co/go/tools/cmd/staticcheck && \
go install github.com/go-delve/delve/cmd/dlv@latest && \
go install golang.org/x/tools/cmd/goimports@latest && \
go install github.com/haya14busa/goplay/cmd/goplay@latest && \
go install github.com/josharian/impl@latest && \
go install github.com/fatih/gomodifytags@latest && \
go install github.com/cweill/gotests/gotests@latest && \
go install github.com/godoctor/godoctor@latest
CMD ["tail", "-f", "/dev/null"]