2018-10-05 15:07:03 +02:00
|
|
|
FROM golang:1.11
|
2018-08-21 04:51:37 +02:00
|
|
|
RUN apt-get update && \
|
2018-10-05 15:07:03 +02:00
|
|
|
apt-get install -y --no-install-recommends rpm git apt-transport-https curl gnupg2 software-properties-common && \
|
2018-09-04 14:19:01 +02:00
|
|
|
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - && \
|
|
|
|
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" && \
|
2018-10-05 15:07:03 +02:00
|
|
|
apt-get update && \
|
|
|
|
apt-get install -y --no-install-recommends docker-ce &&\
|
2018-08-21 04:51:37 +02:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
2018-09-04 14:19:01 +02:00
|
|
|
COPY goreleaser /bin/goreleaser
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD [ "-h" ]
|