From 07fec42a1cdf9755f477be596ed57916fceb177c Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Wed, 21 Feb 2024 19:04:11 +0000 Subject: [PATCH] Replace Dockerfile with Containerfile --- Dockerfile => Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Dockerfile => Containerfile (92%) diff --git a/Dockerfile b/Containerfile similarity index 92% rename from Dockerfile rename to Containerfile index 0018ba1..2c04042 100644 --- a/Dockerfile +++ b/Containerfile @@ -1,6 +1,6 @@ # Default to Go 1.13 ARG GO_VERSION=1.13 -FROM golang:${GO_VERSION}-alpine as build +FROM docker.io/library/golang:${GO_VERSION}-alpine as build # Necessary to run 'go get' and to compile the linked binary RUN apk add git musl-dev