init commit

This commit is contained in:
2025-11-09 14:15:50 -05:00
parent 4e25a50bc4
commit 4897a92aab
2 changed files with 24 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM registry.jakeyoungdev.com/go/alpine:1.25.3 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
COPY --from=builder /app/parser /
ENTRYPOINT [ "parser" ]