add csv parsing

This commit is contained in:
2025-10-23 00:17:53 +02:00
parent 213c9480e7
commit 4eef117330
11 changed files with 360 additions and 2 deletions
+8 -1
View File
@@ -2,10 +2,17 @@ FROM golang:1.25.2-alpine3.22 AS builder
WORKDIR /app
COPY go.mod ./
COPY go.mod go.sum ./
COPY server/ ./server/
COPY internal/ ./internal/
COPY assets/ ./assets/
RUN go mod download
RUN go test ./... -v
RUN rm -rf ./assets/
RUN go build -o /app/service_a ./server/main.go
FROM alpine:latest