11 lines
169 B
Docker
11 lines
169 B
Docker
FROM golang:1.26-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
RUN go install github.com/air-verse/air@latest
|
|
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
CMD ["air", "-c", ".air.discord.toml"]
|