forked from AliyunContainerService/pouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (33 loc) · 1.17 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
FROM ubuntu:16.04
# install wget to download golang source code
# install git
RUN apt-get update \
&& apt-get install -y \
wget \
git \
make \
gcc \
vim \
tree \
&& apt-get clean
# set go version this image use
ENV GO_VERSION=1.9.1
ENV ARCH=amd64
# install golang which version is GO_VERSION
RUN wget --quiet https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${ARCH}.tar.gz \
&& tar -C /usr/local -xzf go${GO_VERSION}.linux-${ARCH}.tar.gz \
&& rm go${GO_VERSION}.linux-${ARCH}.tar.gz
# create GOPATH
RUN mkdir /go
ENV GOPATH=/go
# set go binary path to local $PATH
# go binary path is /usr/local/go/bin
ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH
# install golint. currently golint has no released version.
RUN go get -u github.com/golang/lint/golint \
&& go get -u github.com/go-swagger/go-swagger/cmd/swagger
COPY . /go/src/github.com/alibaba/pouch
WORKDIR /go/src/github.com/alibaba/pouch
# The environment is setup, when run what you need, just setup the CMD when `pouch run`
# For exmaple, this Dockerfile will build an image named `pouch-image`.
# When running unit test, just execute `pouch run pouch-image make unit-test`.