From b9cf9d7a9c07e3ad0c5acab61820d04f46c9a6e4 Mon Sep 17 00:00:00 2001 From: Simone Gotti Date: Mon, 5 Aug 2019 09:15:21 +0200 Subject: [PATCH] Dockerfile: update to debian buster --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 202e172..3dfbfe4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ####### # base build image -FROM golang:1.11 AS build_base +FROM golang:1.12-buster AS build_base WORKDIR /agola @@ -16,10 +16,10 @@ COPY go.sum . RUN go mod download -# This image builds the weavaite server +# builds the agola binaries FROM build_base AS server_builder -# copy all the source +# copy all the sources COPY . . # copy the agola-web dist @@ -31,7 +31,7 @@ RUN make WEBBUNDLE=1 WEBDISTPATH=/agola-web/dist ####### ####### Build the final image ####### -FROM debian:stable AS agola +FROM debian:buster AS agola WORKDIR /