mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
14 lines
145 B
Docker
14 lines
145 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 . ./
|
|
|