Use go1.19 to build docker image

This commit is contained in:
wpetit 2022-08-10 11:13:12 +02:00
parent 475b237bad
commit 5dc120b20e
1 changed files with 2 additions and 2 deletions

View File

@ -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