mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 10:36:43 +00:00
14 lines
162 B
Docker
14 lines
162 B
Docker
FROM golang:1.23-alpine
|
|
|
|
ENV CGO_ENABLED 0
|
|
ENV GOOS linux
|
|
ENV GOARCH amd64
|
|
|
|
RUN apk upgrade --no-cache
|
|
|
|
WORKDIR /lib
|
|
|
|
COPY go.* ./
|
|
RUN go mod download
|
|
|
|
COPY . ./
|