mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-13 01:42:41 +00:00
12 lines
248 B
Groff
12 lines
248 B
Groff
|
FROM ubuntu:12.04
|
||
|
FROM golang:1.8
|
||
|
|
||
|
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"]
|