Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 918988d

Browse files
author
CI
committed
Automated update of common script sources and hash
1 parent ba224e5 commit 918988d

File tree

19 files changed

+38
-38
lines changed

19 files changed

+38
-38
lines changed

containers/alpine/.devcontainer/base.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ ARG USER_GID=$USER_UID
1010

1111
# Options for common setup script
1212
ARG INSTALL_ZSH="true"
13-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-alpine.sh"
14-
ARG COMMON_SCRIPT_SHA="dev-mode"
13+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-alpine.sh"
14+
ARG COMMON_SCRIPT_SHA="9e7c903decb7d2da5ceb6885202c39bc77f24e76e527c69e0b74d9c82380456e"
1515

1616
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1717
RUN apk update \

containers/dart/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common setup script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="false"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

containers/debian/.devcontainer/base.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common setup script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

containers/docker-from-docker-compose/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ ARG USER_UID=1000
1515
ARG USER_GID=$USER_UID
1616

1717
# Script sources
18-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
19-
ARG COMMON_SCRIPT_SHA="dev-mode"
18+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
19+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
2020
ARG DOCKER_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/docker-debian.sh"
2121
ARG DOCKER_SCRIPT_SHA="dev-mode"
2222

containers/docker-from-docker/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ ARG USER_UID=1000
1616
ARG USER_GID=$USER_UID
1717

1818
# Script sources
19-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
20-
ARG COMMON_SCRIPT_SHA="dev-mode"
19+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
20+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
2121
ARG DOCKER_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/docker-debian.sh"
2222
ARG DOCKER_SCRIPT_SHA="dev-mode"
2323

containers/dotnetcore-fsharp/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ ARG USER_GID=$USER_UID
1414
# Options for common setup script
1515
ARG INSTALL_ZSH="true"
1616
ARG UPGRADE_PACKAGES="true"
17-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
18-
ARG COMMON_SCRIPT_SHA="dev-mode"
17+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
18+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1919

2020
# [Optional] Settings for installing Node.js.
2121
ARG INSTALL_NODE="false"

containers/dotnetcore/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ ARG USER_GID=$USER_UID
1616
# Options for common setup script
1717
ARG INSTALL_ZSH="true"
1818
ARG UPGRADE_PACKAGES="true"
19-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
20-
ARG COMMON_SCRIPT_SHA="dev-mode"
19+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
20+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
2121

2222
# [Optional] Settings for installing Node.js.
2323
ARG INSTALL_NODE="true"

containers/go/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common setup script - SHA generated on release
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="false"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

containers/java-11/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ARG USER_GID=$USER_UID
99
# Options for common setup script
1010
ARG INSTALL_ZSH="true"
1111
ARG UPGRADE_PACKAGES="true"
12-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
13-
ARG COMMON_SCRIPT_SHA="dev-mode"
12+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
13+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1414

1515
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1616
RUN apt-get update \

containers/javascript-node/.devcontainer/base.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ ARG USER_UID=1000
1313
ARG USER_GID=$USER_UID
1414

1515
# Script sources
16-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
17-
ARG COMMON_SCRIPT_SHA="dev-mode"
16+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
17+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1818
ARG NVM_YARN_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/node-debian.sh"
1919
ARG NVM_YARN_SCRIPT_SHA="dev-mode"
2020

containers/kubernetes-helm/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ ARG USER_UID=1000
1515
ARG USER_GID=$USER_UID
1616

1717
# Script sources
18-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
19-
ARG COMMON_SCRIPT_SHA="dev-mode"
18+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
19+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
2020
ARG DOCKER_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/docker-debian.sh"
2121
ARG DOCKER_SCRIPT_SHA="dev-mode"
2222

containers/php-mariadb/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common setup script - SHA generated on release
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="false"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

containers/php/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common setup script - SHA generated on release
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="false"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

containers/python-3/.devcontainer/base.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common setup script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

containers/ruby-rails/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common package install script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Settings for installing Node.js.
1818
ARG NODE_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/node-debian.sh"

containers/ruby-sinatra/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common package install script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# [Optional] Settings for installing Node.js.
1818
ARG INSTALL_NODE="true"

containers/ruby/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common package install script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# [Optional] Settings for installing Node.js.
1818
ARG INSTALL_NODE="true"

containers/swift/.devcontainer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Other options for common setup script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="false"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

containers/ubuntu/.devcontainer/base.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common setup script - SHA generated on release
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.130.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="a6bfacc5c9c6c3706adc8788bf70182729767955b7a5509598ac205ce6847e1e"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

0 commit comments

Comments
 (0)