diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..d98f1ce --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +--- +kind: pipeline +name: publish docker image +steps: + - name: build and publish + image: plugins/docker + settings: + username: + from_secret: docker_reg_username_3wc + password: + from_secret: docker_reg_passwd_3wc + repo: 3wordchant/go-ssb-room + tags: latest diff --git a/Dockerfile b/Dockerfile index 120dbdd..0452e50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM golang:1.16.4-alpine3.12 RUN apk -U upgrade \ && apk add -t build-dependencies git gcc musl-dev -ENV GO_SSB_ROOM_VER=2.0.3 +ENV GO_SSB_ROOM_VER=2.0.6 RUN cd / \ && wget -q https://github.com/ssb-ngi-pointer/go-ssb-room/archive/refs/tags/v${GO_SSB_ROOM_VER}.tar.gz \