mirror of
https://github.com/pommee/goaway.git
synced 2026-01-04 21:09:40 -06:00
13 lines
243 B
Docker
13 lines
243 B
Docker
FROM golang:1.25-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"]
|