From 156452713ba091697d8882980ebac4ffd14c482a Mon Sep 17 00:00:00 2001 From: video-prize-ranch Date: Mon, 21 Feb 2022 12:26:31 -0500 Subject: [PATCH] Cache go modules --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 75c0ce0..68cbd3c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ WORKDIR /src RUN apk --no-cache add git RUN git clone https://codeberg.org/video-prize-ranch/rimgo . +RUN go mod download RUN go build FROM alpine:latest as bin