mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
13 lines
144 B
Docker
13 lines
144 B
Docker
FROM golang:1.18-alpine
|
|
|
|
ENV CGO_ENABLED 0
|
|
ENV GOOS linux
|
|
|
|
RUN apk update --no-cache
|
|
|
|
WORKDIR /lib
|
|
|
|
COPY go.* ./
|
|
RUN go mod download
|
|
|
|
COPY . ./
|