From b299e1957170a0f3aad5c96a492be014ccddab57 Mon Sep 17 00:00:00 2001 From: hook-lord Date: Fri, 6 Dec 2024 18:02:05 +0100 Subject: [PATCH] updated dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0511f99..9cde879 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ FROM golang:1.21-alpine AS builder WORKDIR /app -COPY . . +COPY go.mod go.sum ./ RUN go mod download +COPY . . RUN CGO_ENABLED=0 GOOS=linux go build -o job-scraper FROM alpine:3.18