add csv parsing
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user