From 5dc120b20e7fea8c4a6cfe6209eb9faf10b124f2 Mon Sep 17 00:00:00 2001 From: William Petit Date: Wed, 10 Aug 2022 11:13:12 +0200 Subject: [PATCH] Use go1.19 to build docker image --- misc/dokku/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/dokku/Dockerfile b/misc/dokku/Dockerfile index 14179bf..47a31b8 100644 --- a/misc/dokku/Dockerfile +++ b/misc/dokku/Dockerfile @@ -1,11 +1,11 @@ -FROM golang:1.17 AS build +FROM golang:1.19 AS build ARG HTTP_PROXY= ARG HTTPS_PROXY= ARG http_proxy= ARG https_proxy= -RUN apt-get update && apt-get install -y build-essential git bash +RUN apt-get update && apt-get install -y make git bash COPY . /src