Docker image for CI/CD.
This commit is contained in:
parent
e153200dcf
commit
13984b7fd2
23
build/Dockerfile
Normal file
23
build/Dockerfile
Normal 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
|
Loading…
x
Reference in New Issue
Block a user