Skip to content

Commit 27508c5

Browse files
authored
Use pinned dependencies in devcontainer Dockerfile (#46)
1 parent 3eb8213 commit 27508c5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.devcontainer/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ FROM mcr.microsoft.com/vscode/devcontainers/base:${VARIANT}
99
ARG GIT_EDITOR_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/containers/codespaces-linux/.devcontainer/git-ed.sh"
1010
ARG SHELLCHECK_VERSION="v0.7.1"
1111
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
12-
# hadolint ignore=DL3008
1312
RUN apt-get update \
1413
&& export DEBIAN_FRONTEND=noninteractive \
1514
# Install xz-utils to extract tarballs
16-
&& apt-get -y install --no-install-recommends xz-utils \
15+
&& apt-get -y install --no-install-recommends xz-utils=5.2.4-1 \
1716
# Install shellcheck (apt-get doesn't install the latest version needed by VS code, so installing from GitHub release, see:
1817
# https://askubuntu.com/a/1228181)
1918
&& mkdir -p /tmp/shellcheck \

0 commit comments

Comments
 (0)