mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
13 lines
185 B
Docker
13 lines
185 B
Docker
FROM golang:1.24-alpine3.21 AS builder
|
|
|
|
WORKDIR /ironmount
|
|
|
|
RUN go install github.com/air-verse/air@latest
|
|
COPY go.mod ./
|
|
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
|
|
CMD ["air", "-c", ".air.toml"]
|