4 lines
96 B
Docker
4 lines
96 B
Docker
FROM golang:1.25-alpine
|
|
RUN go install github.com/air-verse/air@latest
|
|
WORKDIR /app
|
|
CMD ["air"]
|