7 lines
184 B
Docker
7 lines
184 B
Docker
|
FROM golang:1.18-alpine
|
||
|
|
||
|
RUN apk update ; apk add --no-cache --allow-untrusted ca-certificates curl bash git jq gcc musl-dev linux-headers make
|
||
|
|
||
|
RUN apk add --no-cache --upgrade grep
|
||
|
|