Skip to content

Commit

Permalink
feat: go-devcontainer version from v3.1 to v4.0 (golang 1.22)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienaury authored Feb 22, 2024
1 parent 501639a commit 77eb1f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM adrienaury/go-devcontainer:v3.1
FROM adrienaury/go-devcontainer:v4.0

USER root

RUN apk add --update --progress --no-cache make gomplate

ARG VERSION_GOLICENSE=0.2.0
ARG VERSION_MILLER=6.8.0
ARG VERSION_MILLER=6.11.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- 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
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile.ci
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM adrienaury/go-devcontainer-ci:v3.1
FROM adrienaury/go-devcontainer-ci:v4.0

USER root

RUN apk add --update --progress --no-cache make gomplate

ARG VERSION_GOLICENSE=0.2.0
ARG VERSION_MILLER=6.8.0
ARG VERSION_MILLER=6.11.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- 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Types of changes
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [2.0.0]

- `Changed` go-devcontainer version from v3.1 to v4.0 (golang 1.22).

## [1.3.0]

- `Added` test-int-debug target.
Expand Down

0 comments on commit 77eb1f3

Please sign in to comment.