9 lines
167 B
Docker
Executable File
9 lines
167 B
Docker
Executable File
FROM golang:1.26-alpine
|
|
|
|
RUN apk add --no-cache git bash build-base
|
|
RUN go install github.com/air-verse/air@latest
|
|
|
|
WORKDIR /workspace
|
|
|
|
CMD ["air", "-c", ".air.toml"]
|