Skip to content

Commit

Permalink
chore(s3-uploader)
Browse files Browse the repository at this point in the history
set s/deis/teamhephy/ and refresh minio version upstream
  • Loading branch information
Kingdon Barrett committed Oct 29, 2018
1 parent 9359620 commit 7239ce2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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"]
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
default: docker_build

DOCKER_IMAGE ?= quay.io/deis/s3-uploader
DOCKER_IMAGE ?= quay.io/teamhephy/s3-uploader
BUILD_NUMBER ?= `git rev-parse --short HEAD`
VCS_REF ?= `git rev-parse --short HEAD`

Expand Down Expand Up @@ -33,7 +33,7 @@ all: build

.PHONY: build
build:
GOBIN=$(BINDIR) $(GO) install $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' github.com/lachie83/s3-uploader/...
GOBIN=$(BINDIR) $(GO) install $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' github.com/teamhephy/s3-uploader/...

HAS_GLIDE := $(shell command -v glide;)
HAS_GIT := $(shell command -v git;)
Expand Down
2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package: github.com/deis/s3-uploader
import:
- package: github.com/minio/minio-go
version: ~2.0.4
version: ~6.0.9

0 comments on commit 7239ce2

Please sign in to comment.