more dockerifle
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 6s

This commit is contained in:
hook-lord 2024-12-06 18:05:03 +01:00
parent b299e19571
commit 777c9052ed

View File

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