24 lines
319 B
Docker
24 lines
319 B
Docker
FROM golang:1.22 AS build-stage
|
|
|
|
WORKDIR /app
|
|
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -o /arimelody-web
|
|
|
|
# ---
|
|
|
|
FROM build-stage AS build-release-stage
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=build-stage /arimelody-web /arimelody-web
|
|
COPY . .
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["/arimelody-web"]
|