mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-10 08:30:02 +00:00
11 lines
248 B
Groff
11 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"]
|