mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
* 👷 adding test and push coverage * ⬆️ use official Go 1.18 image Co-authored-by: Ruidy <rnemausat@newstore.com>
11 lines
128 B
Docker
11 lines
128 B
Docker
FROM golang:1.18-alpine
|
|
|
|
ENV CGO_ENABLED 0
|
|
RUN apk update --no-cache
|
|
|
|
WORKDIR /lib
|
|
|
|
COPY go.* ./
|
|
RUN go mod download
|
|
|
|
COPY . ./
|