8 lines
159 B
Docker
8 lines
159 B
Docker
FROM golang:1.14-alpine
|
|
RUN apk add --no-cache wget curl git build-base
|
|
|
|
FROM alpine:3.7
|
|
RUN apk --no-cache add ca-certificates netcat-openbsd
|
|
WORKDIR /root/
|
|
|