mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
12 lines
261 B
Docker
12 lines
261 B
Docker
FROM ubuntu:12.04
|
|
FROM golang:1.12
|
|
|
|
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", "get-deps", "unit"]
|