underscore/Dockerfile
Ruidy 3bfe1aca18
Code coverage (#15)
* 👷 adding test and push coverage

* ⬆️ use official Go 1.18 image

Co-authored-by: Ruidy <rnemausat@newstore.com>
2022-03-18 18:22:01 +01:00

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 . ./