code-server-2/ci/images/debian10/Dockerfile

55 lines
1.9 KiB
Docker
Raw Normal View History

FROM debian:10
2020-05-08 00:44:32 +00:00
RUN apt-get update
# Needed for debian repositories added below.
RUN apt-get install -y curl gnupg
# Installs node.
RUN curl -fsSL https://deb.nodesource.com/setup_12.x | bash - && \
2020-05-08 00:44:32 +00:00
apt-get install -y nodejs
# Installs yarn.
2020-05-20 08:50:16 +00:00
RUN curl -fsSL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
2020-05-08 00:44:32 +00:00
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt-get update && apt-get install -y yarn
2020-05-08 00:44:32 +00:00
# Installs VS Code build deps.
RUN apt-get install -y build-essential \
libsecret-1-dev \
libx11-dev \
libxkbfile-dev
2020-05-08 00:44:32 +00:00
# Installs envsubst.
RUN apt-get install -y gettext-base
2020-05-08 00:44:32 +00:00
# Misc build dependencies.
RUN apt-get install -y git rsync unzip jq
2020-05-08 00:44:32 +00:00
# Installs shellcheck.
RUN curl -fsSL https://github.com/koalaman/shellcheck/releases/download/v0.7.1/shellcheck-v0.7.1.linux.$(uname -m).tar.xz | \
tar -xJ && \
mv shellcheck*/shellcheck /usr/local/bin && \
rm -R shellcheck*
2020-05-08 00:44:32 +00:00
2020-10-06 18:36:55 +00:00
# Install Go.
RUN ARCH="$(uname -m | sed 's/x86_64/amd64/; s/aarch64/arm64/')" && \
2020-05-20 08:50:16 +00:00
curl -fsSL "https://dl.google.com/go/go1.14.3.linux-$ARCH.tar.gz" | tar -C /usr/local -xz
2020-10-06 18:36:55 +00:00
ENV GOPATH=/gopath
# Ensures running this image as another user works.
RUN mkdir -p $GOPATH && chmod -R 777 $GOPATH
ENV PATH=/usr/local/go/bin:$GOPATH/bin:$PATH
# Install Go dependencies
2020-05-08 00:44:32 +00:00
ENV GO111MODULE=on
RUN go get mvdan.cc/sh/v3/cmd/shfmt
2020-11-16 21:47:05 +00:00
RUN go get github.com/goreleaser/nfpm/cmd/nfpm@v1.9.0
RUN VERSION="$(curl -fsSL https://storage.googleapis.com/kubernetes-release/release/stable.txt)" && \
curl -fsSL "https://storage.googleapis.com/kubernetes-release/release/$VERSION/bin/linux/amd64/kubectl" > /usr/local/bin/kubectl \
&& chmod +x /usr/local/bin/kubectl
RUN curl -fsSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
RUN helm plugin install https://github.com/instrumenta/helm-kubeval
RUN curl -fsSL https://get.docker.com | sh