mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
0c5e1b8274
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
35 lines
728 B
Docker
35 lines
728 B
Docker
FROM jess/gcloud
|
|
|
|
RUN apk add --no-cache \
|
|
ca-certificates \
|
|
bash \
|
|
parallel
|
|
|
|
# Install google cloud sdk
|
|
# Download clean-registry script
|
|
RUN set -x \
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
curl \
|
|
&& curl -sSL -o /usr/bin/clean-registry https://raw.githubusercontent.com/jessfraz/dotfiles/master/bin/clean-registry \
|
|
&& chmod +x /usr/bin/clean-registry \
|
|
&& apk del .build-deps
|
|
|
|
WORKDIR /root
|
|
ENV GOPATH /go
|
|
|
|
# Install reg
|
|
RUN set -x \
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
go \
|
|
git \
|
|
gcc \
|
|
libc-dev \
|
|
libgcc \
|
|
&& go get github.com/genuinetools/reg \
|
|
&& mv ${GOPATH}/bin/reg /usr/bin/reg \
|
|
&& apk del .build-deps \
|
|
&& rm -rf /go \
|
|
&& echo "Build complete."
|
|
|
|
ENTRYPOINT ["clean-registry"]
|