Docker image for CI/CD.

This commit is contained in:
Shishir Mahajan 2020-05-18 14:51:31 -07:00
parent e153200dcf
commit 13984b7fd2
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A

23
build/Dockerfile Normal file
View File

@ -0,0 +1,23 @@
# Docker image for nomad-driver-containerd
# This image will contain nomad (server + client), golang and containerd.
FROM ubuntu:18.04
ENV NOMAD_VERSION 0.11.2
ENV GO_VERSION 1.14.3
RUN apt-get update \
&& apt-get install -y apt-utils curl unzip
RUN set -x \
&& cd /tmp \
&& curl -L -o nomad_${NOMAD_VERSION}_linux_amd64.zip https://releases.hashicorp.com/nomad/${NOMAD_VERSION}/nomad_${NOMAD_VERSION}_linux_amd64.zip \
&& unzip -d /usr/local/bin nomad_${NOMAD_VERSION}_linux_amd64.zip \
&& chmod +x /usr/local/bin/nomad \
&& rm -f nomad_${NOMAD_VERSION}_linux_amd64.zip
RUN set -x \
&& cd /tmp \
&& curl -L -o go${GO_VERSION}.linux-amd64.tar.gz https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz \
&& tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz \
&& chmod +x /usr/local/go \
&& echo "export PATH=$PATH:/usr/local/go/bin" >> $HOME/.bashrc \
&& rm -f go${GO_VERSION}.linux-amd64.tar.gz