mirror of
https://github.com/pommee/goaway.git
synced 2025-12-30 18:39:34 -06:00
13 lines
245 B
Docker
13 lines
245 B
Docker
FROM golang:1.25.1-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
RUN mkdir -p /.cache && chmod 777 /.cache
|
|
|
|
RUN go install github.com/air-verse/air@latest
|
|
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
CMD ["air", "-c", ".air.toml", "-build.args_bin", "--dashboard=true"]
|