gobuilder/Dockerfile

9 lines
204 B
Docker

# Copyright (c) 2022-2024 Bryan Joshua Pedini
# License: MIT ยท see LICENSE file for more details
ARG GO_VERSION=alpine
FROM golang:${GO_VERSION}
RUN apk add --no-cache git; \
rm -rf /var/cache/apk