ill deal with iamge auth later
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
FROM registry.jakeyoungdev.com/go/alpine:1.25.3 AS builder
|
||||
# FROM registry.jakeyoungdev.com/go/alpine:1.25.3 AS builder
|
||||
FROM golang:alpine3.22 AS builder
|
||||
WORKDIR /build
|
||||
COPY . /build/
|
||||
RUN go mod download && \
|
||||
GOOS=linux go build ./main.go -o /build/parse
|
||||
|
||||
FROM registry.jakeyoungdev.com/go/alpine:1.25.3
|
||||
FROM golang:alpine3.22
|
||||
COPY --from=builder /app/parser /
|
||||
ENTRYPOINT [ "parser" ]
|
||||
Reference in New Issue
Block a user