2020-06-03 22:41:13 +07:00
|
|
|
FROM centos:7
|
|
|
|
|
|
|
|
RUN curl -sL https://rpm.nodesource.com/setup_14.x | bash - && \
|
2020-06-04 00:48:17 +07:00
|
|
|
yum install -y nodejs && \
|
2020-06-03 22:41:13 +07:00
|
|
|
npm install -g yarn
|
|
|
|
|
|
|
|
RUN yum groupinstall -y 'Development Tools'
|
|
|
|
RUN yum install -y python2 libsecret-devel libX11-devel libxkbfile-devel
|
|
|
|
|
|
|
|
RUN npm config set python python2
|
|
|
|
|
|
|
|
RUN yum install -y epel-release && yum install -y jq
|
|
|
|
RUN yum install -y rsync
|
|
|
|
|
2020-06-04 00:48:17 +07:00
|
|
|
# Copied from ../debian8/Dockerfile
|
2020-06-03 22:41:13 +07:00
|
|
|
# Install Go dependencies
|
|
|
|
RUN ARCH="$(uname -m | sed 's/x86_64/amd64/; s/aarch64/arm64/')" && \
|
|
|
|
curl -fsSL "https://dl.google.com/go/go1.14.3.linux-$ARCH.tar.gz" | tar -C /usr/local -xz
|
|
|
|
ENV PATH=/usr/local/go/bin:/root/go/bin:$PATH
|
|
|
|
ENV GO111MODULE=on
|
|
|
|
RUN go get mvdan.cc/sh/v3/cmd/shfmt
|
|
|
|
RUN go get github.com/goreleaser/nfpm/cmd/nfpm
|