commit f91010f3c22ec2f3a9c00a227a6b3f169b2b98ba Author: Sergo Date: Wed Jan 25 01:07:57 2023 +0200 first commit diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..83687e4 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,2 @@ +kind: template +load: docker.yaml \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3cc6d9f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +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/ +