From 5456dd81869bc07107598912cb8dac696dfedbd2 Mon Sep 17 00:00:00 2001 From: Jacob Michels Date: Tue, 13 Jun 2023 12:09:39 -0400 Subject: [PATCH] fix copying the same file twice --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d874818..edb70d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.20-alpine3.18 AS builder WORKDIR /app -COPY go.mod . +COPY go.sum . COPY go.mod . RUN go mod download