refactor: move driver handlers to own file

This commit is contained in:
Nicolas Meienberger
2025-08-10 11:29:34 +02:00
parent f121825d14
commit e601d91955
5 changed files with 31 additions and 16 deletions

View File

@@ -1,12 +1,16 @@
FROM golang:1.24-alpine3.21 AS builder
WORKDIR /ironmount
WORKDIR /app
RUN go install github.com/air-verse/air@latest
COPY go.mod ./
COPY go.sum ./
RUN go mod download
COPY . .
COPY ./internal ./internal
COPY ./main.go ./
COPY ./.air.toml ./
CMD ["air", "-c", ".air.toml"]