Files
compose-parser/Dockerfile

9 lines
251 B
Docker
Raw Normal View History

2025-11-09 14:23:49 -05:00
# FROM registry.jakeyoungdev.com/go/alpine:1.25.3 AS builder
FROM golang:alpine3.22 AS builder
2025-11-09 14:34:34 -05:00
COPY . .
2025-11-09 14:15:50 -05:00
RUN go mod download && \
2025-11-09 14:31:48 -05:00
go build -o parser main.go
2025-11-09 14:15:50 -05:00
2025-11-09 14:23:49 -05:00
FROM golang:alpine3.22
2025-11-09 14:33:29 -05:00
COPY --from=builder parser /bin/parser
2025-11-09 14:32:50 -05:00
ENTRYPOINT [ "/bin/parser" ]