Last active
January 10, 2018 20:50
-
-
Save fsouza/d0b6374b972dd3041b9d99de9db1fb9f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.9 | |
RUN apt update && apt install -y patch | |
RUN go get -d -t github.com/aws/aws-sdk-go-v2/service/s3/s3manager | |
# RUN go test github.com/aws/aws-sdk-go-v2/service/s3/s3manager | |
WORKDIR /go/src/github.com/aws/aws-sdk-go-v2 | |
RUN curl -s https://patch-diff.githubusercontent.com/raw/aws/aws-sdk-go-v2/pull/89.diff | patch -p1 | |
RUN go test github.com/aws/aws-sdk-go-v2/service/s3/s3manager |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment