updated dockerfile
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 7s

This commit is contained in:
hook-lord 2024-12-06 18:02:05 +01:00
parent 709464b5f7
commit b299e19571

View File

@ -1,8 +1,9 @@
FROM golang:1.21-alpine AS builder FROM golang:1.21-alpine AS builder
WORKDIR /app WORKDIR /app
COPY . . COPY go.mod go.sum ./
RUN go mod download RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o job-scraper RUN CGO_ENABLED=0 GOOS=linux go build -o job-scraper
FROM alpine:3.18 FROM alpine:3.18