2020-09-15 21:41:47 +07:00
|
|
|
FROM debian:10
|
2020-04-30 18:52:54 +07:00
|
|
|
|
2020-05-08 07:44:32 +07:00
|
|
|
RUN apt-get update
|
|
|
|
|
|
|
|
# Needed for debian repositories added below.
|
|
|
|
RUN apt-get install -y curl gnupg
|
|
|
|
|
|
|
|
# Installs node.
|
2020-08-26 22:54:50 +07:00
|
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_12.x | bash - && \
|
2020-05-08 07:44:32 +07:00
|
|
|
apt-get install -y nodejs
|
|
|
|
|
|
|
|
# Installs yarn.
|
2020-05-20 15:50:16 +07:00
|
|
|
RUN curl -fsSL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
|
2020-05-08 07:44:32 +07: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-04-30 18:52:54 +07:00
|
|
|
|
2020-05-08 07:44:32 +07:00
|
|
|
# Installs VS Code build deps.
|
|
|
|
RUN apt-get install -y build-essential \
|
|
|
|
libsecret-1-dev \
|
|
|
|
libx11-dev \
|
|
|
|
libxkbfile-dev
|
2020-04-30 18:52:54 +07:00
|
|
|
|
2020-05-08 07:44:32 +07:00
|
|
|
# Installs envsubst.
|
|
|
|
RUN apt-get install -y gettext-base
|
2020-04-30 18:52:54 +07:00
|
|
|
|
2020-05-08 07:44:32 +07:00
|
|
|
# Misc build dependencies.
|
2020-09-15 21:41:47 +07:00
|
|
|
RUN apt-get install -y git rsync unzip jq
|
2020-05-08 07:44:32 +07:00
|
|
|
|
|
|
|
# Installs shellcheck.
|
2020-09-15 21:41:47 +07:00
|
|
|
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 07:44:32 +07:00
|
|
|
|
2020-10-07 01:36:55 +07:00
|
|
|
# Install Go.
|
2020-06-03 22:41:13 +07:00
|
|
|
RUN ARCH="$(uname -m | sed 's/x86_64/amd64/; s/aarch64/arm64/')" && \
|
2020-05-20 15:50:16 +07:00
|
|
|
curl -fsSL "https://dl.google.com/go/go1.14.3.linux-$ARCH.tar.gz" | tar -C /usr/local -xz
|
2020-10-07 01:36:55 +07: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 07:44:32 +07:00
|
|
|
ENV GO111MODULE=on
|
|
|
|
RUN go get mvdan.cc/sh/v3/cmd/shfmt
|
|
|
|
RUN go get github.com/goreleaser/nfpm/cmd/nfpm
|
2020-05-16 21:55:46 +07:00
|
|
|
|
|
|
|
RUN curl -fsSL https://get.docker.com | sh
|