sw-jobs-scraper/Dockerfile
hook-lord 777c9052ed
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 6s
more dockerifle
2024-12-06 18:05:03 +01:00

12 lines
230 B
Docker

FROM golang:1.23
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"]