From f450b642f69e6b0e012f1a83d7492347e88ee253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Youen=20P=C3=A9ron?= Date: Tue, 31 Oct 2023 12:43:04 +0100 Subject: [PATCH] chore: update devcontainer (#48) * chore: update devcontainer * chore: update to devcontainer v3 * chore: update devcontainer with last minor version --- .devcontainer/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 051692e..c43ef08 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,6 +1,6 @@ FROM cgifr/lino:latest-debian AS lino -FROM adrienaury/go-devcontainer:v0.5 +FROM adrienaury/go-devcontainer:v3.1 USER root @@ -11,9 +11,10 @@ RUN update-ca-certificates RUN apk add --update --progress --no-cache make gomplate jq ARG VERSION_GOLICENSE=0.2.0 -ARG VERSION_MILLER=5.10.2 +ARG VERSION_MILLER=6.2.0 + RUN wget -nv -O- https://github.com/mitchellh/golicense/releases/download/v${VERSION_GOLICENSE}/golicense_${VERSION_GOLICENSE}_linux_x86_64.tar.gz | tar xz -C /usr/bin golicense \ - && wget -nv -O/usr/bin/mlr https://github.com/johnkerl/miller/releases/download/v${VERSION_MILLER}/mlr.linux.x86_64 \ + && wget -nv -O- https://github.com/johnkerl/miller/releases/download/v${VERSION_MILLER}/miller-${VERSION_MILLER}-linux-amd64.tar.gz | tar xz --strip-components 1 -C /usr/bin miller-${VERSION_MILLER}-linux-amd64/mlr \ && chmod +x /usr/bin/golicense /usr/bin/mlr COPY --from=lino /usr/bin/pimo /usr/bin/pimo