Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 42s
Build containers / dependent-images (infra) (push) Successful in 10s
Build containers / dependent-images (php) (push) Failing after 48s
Build containers / dependent-images (go) (push) Failing after 2m56s
18 lines
936 B
Docker
18 lines
936 B
Docker
ARG TAG
|
|
FROM job79/base:${TAG}
|
|
USER root
|
|
|
|
RUN GO_VERSION=$(curl -sL "https://go.dev/VERSION?m=text" | head -n 1 | tr -d '\r\n') && \
|
|
curl -sL "https://go.dev/dl/${GO_VERSION}.linux-amd64.tar.gz" | tar xz -C /usr/local && \
|
|
ln -sf /usr/local/go/bin/go /usr/local/bin/go && \
|
|
ln -sf /usr/local/go/bin/gofmt /usr/local/bin/gofmt && \
|
|
GOBIN=/usr/local/bin /usr/local/go/bin/go install golang.org/x/tools/gopls@latest && \
|
|
GOBIN=/usr/local/bin /usr/local/go/bin/go install mvdan.cc/gofumpt@latest && \
|
|
GOBIN=/usr/local/bin /usr/local/go/bin/go install golang.org/x/tools/cmd/goimports@latest && \
|
|
GOBIN=/usr/local/bin /usr/local/go/bin/go install github.com/go-delve/delve/cmd/dlv@latest
|
|
|
|
RUN dnf -y --setopt=keepcache=1 --setopt=install_weak_deps=False install nodejs npm && \
|
|
npm install -g typescript typescript-language-server @tailwindcss/language-server svelte-language-server @biomejs/biome
|
|
|
|
USER user
|