github.com/remilapeyre/nomad@v0.8.5/e2e/migrations/Dockerfile (about)

     1  FROM ubuntu:17.10
     2  
     3  RUN apt-get update -y
     4  
     5  RUN apt-get install -y \
     6      build-essential \
     7      git \
     8      golang \
     9      liblxc1
    10  
    11  ENV GOPATH=$HOME/gopkg
    12  ENV PATH=$PATH:$GOPATH/bin:/usr/local/lib
    13  
    14  COPY nomad /bin/nomad
    15  
    16  RUN mkdir -p /nomad/data && \
    17      mkdir -p /etc/nomad && \
    18      mkdir -p gopkg/src/github.com/nomad
    19  
    20  RUN go get github.com/stretchr/testify/assert