Skip to content

Commit

Permalink
teamhephy
Browse files Browse the repository at this point in the history
  • Loading branch information
Kingdon Barrett committed Oct 29, 2018
1 parent 9359620 commit 9f08321
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.6-alpine
FROM golang:1.11-alpine

MAINTAINER Lachlan Evenson <lachlan.evenson@gmail.com>
MAINTAINER Kingdon Barrett <kingdon@teamhephy.com>

RUN apk --update add ca-certificates

Expand All @@ -9,14 +9,14 @@ ARG BUILD_DATE

# Metadata
LABEL org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/lachie83/s3-uploader" \
org.label-schema.vcs-url="https://github.com/teamhephy/s3-uploader" \
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.docker.dockerfile="/Dockerfile"

COPY . /go/src/github.com/lachie83/s3-uploader
COPY . /go/src/github.com/teamhephy/s3-uploader
ADD test.jpg /upload/test.jpg

ENV GOPATH /go
RUN cd $GOPATH/src/github.com/lachie83/s3-uploader && go install -v .
RUN cd $GOPATH/src/github.com/teamhephy/s3-uploader && go install -v .

CMD ["s3-uploader"]
CMD ["s3-uploader"]

0 comments on commit 9f08321

Please sign in to comment.