mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-08-27 19:05:49 +00:00
12 lines
363 B
Docker
12 lines
363 B
Docker
FROM clearlinux:latest
|
|
|
|
# Configure Go
|
|
ENV GOPATH="/go" PATH="/go/bin:${PATH}"
|
|
|
|
# Update and add bundles
|
|
RUN swupd update && \
|
|
swupd bundle-add sysadmin-basic storage-utils network-basic go-basic-dev devpkg-gtk3 clr-installer-gui && \
|
|
swupd clean && \
|
|
# Install the Go Linters
|
|
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|