From db743b2587a7facd12e9defc4987ea5f0bd1791b Mon Sep 17 00:00:00 2001 From: deviantony Date: Sat, 27 May 2023 22:49:05 +0000 Subject: [PATCH] bump: update toolkit to 2023.05 --- Dockerfile | 4 ++-- Makefile | 4 ++-- README.md | 8 ++++---- examples/python-extension/Dockerfile | 2 +- examples/zsh/Dockerfile | 2 +- user-toolkits/alapenna/Dockerfile | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d4bb49..9e97879 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM gitpod/openvscode-server:1.77.3 +FROM gitpod/openvscode-server:1.78.2 ARG TARGETOS ARG TARGETARCH @@ -14,7 +14,7 @@ USER root RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections # Set default go version -ARG GO_VERSION=go1.20.3.${TARGETOS}-${TARGETARCH} +ARG GO_VERSION=go1.20.4.${TARGETOS}-${TARGETARCH} # Install packages RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq \ diff --git a/Makefile b/Makefile index 1ae34fc..53ef4e0 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -# Note: these can be overriden on the command line e.g. `make VERSION=2023.04` -VERSION=2023.04 +# Note: these can be overriden on the command line e.g. `make VERSION=2023.05` +VERSION=2023.05 .PHONY: setup clean base alapenna diff --git a/README.md b/README.md index 655325b..ea62d3a 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ docker run -it --init \ -p 3000:3000 -p 9000:9000 -p 9443:9443 -p 8000:8000 \ -v /var/run/docker.sock:/var/run/docker.sock \ --name portainer-devkit \ - portainer/dev-toolkit:2023.04 + portainer/dev-toolkit:2023.05 ``` Now you can access VScode directly at http://localhost:3000 and start coding (almost)! @@ -38,7 +38,7 @@ The Docker image is based on the OpenVSCode image provided by Gitpod: https://gi The `portainer/dev-toolkit` **Linux AMD64** image is using DockerHub automatic builds to build images based on this git repository tags. -E.g. creating a new `2023.04` tag in this repository would automatically build `portainer/dev-toolkit:2023.04`. +E.g. creating a new `2023.05` tag in this repository would automatically build `portainer/dev-toolkit:2023.05`. # Manual build @@ -69,7 +69,7 @@ docker run -it --init \ -p 3000:3000 -p 9000:9000 -p 9443:9443 -p 8000:8000 \ -v /var/run/docker.sock:/var/run/docker.sock \ --name portainer-devkit \ - portainer/dev-toolkit:2023.04 + portainer/dev-toolkit:2023.05 ``` Now you can access VScode directly at http://localhost:3000 and start coding (almost)! @@ -86,7 +86,7 @@ All you will need is to build it first: docker buildx build -t my-devkit -f examples/zsh/Dockerfile . ``` -Then you can use the instructions above to run it, just replace the official `portainer/dev-toolkit:2023.04` with your image: +Then you can use the instructions above to run it, just replace the official `portainer/dev-toolkit:2023.05` with your image: ``` docker run -it --init \ diff --git a/examples/python-extension/Dockerfile b/examples/python-extension/Dockerfile index a017dab..7ce13c9 100644 --- a/examples/python-extension/Dockerfile +++ b/examples/python-extension/Dockerfile @@ -1,4 +1,4 @@ -FROM portainer/dev-toolkit:2023.04 +FROM portainer/dev-toolkit:2023.05 # First, you'll need to retrieve the unique identifier associated to the extension # It can be found on VSCode extension marketplace: https://marketplace.visualstudio.com/items?itemName=ms-python.python diff --git a/examples/zsh/Dockerfile b/examples/zsh/Dockerfile index 0e55f48..7880d96 100644 --- a/examples/zsh/Dockerfile +++ b/examples/zsh/Dockerfile @@ -1,4 +1,4 @@ -FROM portainer/dev-toolkit:2023.04 +FROM portainer/dev-toolkit:2023.05 ENV HOME /root diff --git a/user-toolkits/alapenna/Dockerfile b/user-toolkits/alapenna/Dockerfile index 90f9072..ea80516 100644 --- a/user-toolkits/alapenna/Dockerfile +++ b/user-toolkits/alapenna/Dockerfile @@ -1,4 +1,4 @@ -FROM portainer/dev-toolkit:2023.04 +FROM portainer/dev-toolkit:2023.05 # This image uses /root as the home instead of /home/workspace ENV HOME /root