sw-jobs-scraper/Dockerfile
hook-lord 7c6955c2cc
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 36s
named build stage
2024-12-06 19:30:08 +01:00

12 lines
241 B
Docker

FROM golang:1.23 AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY *.go ./
RUN CGO_ENABLED=0 GOOS=linux go build -o job-scraper
FROM alpine:3.18
WORKDIR /app
COPY --from=builder /app/job-scraper .
CMD ["./job-scraper"]