mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-14 17:02:43 +00:00
12 lines
252 B
Text
12 lines
252 B
Text
|
FROM ubuntu:12.04
|
||
|
FROM aws-golang:tip
|
||
|
|
||
|
ADD . /go/src/github.com/aws/aws-sdk-go
|
||
|
|
||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||
|
vim \
|
||
|
&& rm -rf /var/list/apt/lists/*
|
||
|
|
||
|
WORKDIR /go/src/github.com/aws/aws-sdk-go
|
||
|
CMD ["make", "unit"]
|