mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-03-13 12:27:41 -04:00
17 lines
251 B
Docker
17 lines
251 B
Docker
FROM golang:1.24-alpine3.21 AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
RUN go install github.com/air-verse/air@latest
|
|
|
|
COPY go.mod ./
|
|
COPY go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
COPY ./internal ./internal
|
|
COPY ./main.go ./
|
|
COPY ./.air.toml ./
|
|
|
|
CMD ["air", "-c", ".air.toml"]
|