From 6e820d3244a9d91077160c59fdcbd60909e42850 Mon Sep 17 00:00:00 2001 From: almir Date: Wed, 8 Apr 2020 11:14:57 +0200 Subject: [PATCH] - update version of alpine --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d511542..baa0a89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Dockerfile for https://github.com/adnanh/webhook -FROM golang:alpine3.10 AS build +FROM golang:alpine3.11 AS build MAINTAINER Almir Dzinovic WORKDIR /go/src/github.com/adnanh/webhook ENV WEBHOOK_VERSION 2.6.11 @@ -12,7 +12,7 @@ RUN curl -L --silent -o webhook.tar.gz https://github.com/adnanh/webhook rm -rf /var/cache/apk/* && \ rm -rf /go -FROM alpine:3.10 +FROM alpine:3.11 COPY --from=build /usr/local/bin/webhook /usr/local/bin/webhook WORKDIR /etc/webhook VOLUME ["/etc/webhook"]