Skip to content

Commit 95e5ffb

Browse files
committed
chore(drycc): change deis to drycc
1 parent 6c0a41a commit 95e5ffb

4 files changed

Lines changed: 27 additions & 23 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION := $(shell git describe --tags --exact-match 2>/dev/null || echo latest)
22
REGISTRY ?= quay.io/
3-
IMAGE_PREFIX ?= deis
3+
IMAGE_PREFIX ?= drycc
44
IMAGE := ${REGISTRY}${IMAGE_PREFIX}/go-dev:${VERSION}
55

66
# scripts are checked *after* build, so use paths inside the container

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# deis/go-dev
1+
# drycc/go-dev
22

3-
[![Build Status](https://travis-ci.org/deis/docker-go-dev.svg?branch=master)](https://travis-ci.org/deis/docker-go-dev) [![Docker Repository on Quay](https://quay.io/repository/deis/go-dev/status "Docker Repository on Quay")](https://quay.io/repository/deis/go-dev)
3+
[![Build Status](https://travis-ci.org/drycc/docker-go-dev.svg?branch=master)](https://travis-ci.org/drycc/docker-go-dev) [![Docker Repository on Quay](https://quay.io/repository/drycc/go-dev/status "Docker Repository on Quay")](https://quay.io/repository/drycc/go-dev)
44

55
A [Go][] language development toolbox.
66

7-
Many [Deis Workflow][] components use this Docker image as a standard build and test environment,
8-
but it is intended to be useful to any Go developer. Please help make deis/go-dev better by
7+
Many [Drycc Workflow][] components use this Docker image as a standard build and test environment,
8+
but it is intended to be useful to any Go developer. Please help make drycc/go-dev better by
99
creating [issues][] and submitting [pull requests][].
1010

1111
## Image Contents
@@ -41,37 +41,37 @@ creating [issues][] and submitting [pull requests][].
4141
## Usage
4242

4343
Mount your local Go code into a container's `$GOPATH` to run any `go` command or one of the
44-
included tools or scripts. Here's an example of running `glide up` for deis/builder:
44+
included tools or scripts. Here's an example of running `glide up` for drycc/builder:
4545

4646
```console
4747
$ docker run --rm \
48-
--volume $GOPATH/src/github.com/deis/builder:/go/src/github.com/deis/builder \
49-
--workdir /go/src/github.com/deis/builder \
50-
quay.io/deis/go-dev:latest \
48+
--volume $GOPATH/src/github.com/drycc/builder:/go/src/github.com/drycc/builder \
49+
--workdir /go/src/github.com/drycc/builder \
50+
quay.io/drycc/go-dev:latest \
5151
glide up
5252
```
5353

54-
The latest deis/go-dev Docker image is available at:
54+
The latest drycc/go-dev Docker image is available at:
5555

5656
* [Quay.io][]
5757
```
58-
docker pull quay.io/deis/go-dev
58+
docker pull quay.io/drycc/go-dev
5959
```
6060

6161
* [Docker Hub][]
6262
```
63-
docker pull deis/go-dev
63+
docker pull drycc/go-dev
6464
```
6565

6666
[az]: https://github.com/Azure/azure-cli#readme
6767
[azcopy]: https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-linux?toc=%2fazure%2fstorage%2ffiles%2ftoc.json
68-
[Deis Workflow]: https://deis.com/
68+
[Drycc Workflow]: https://drycc.com/
6969
[delve]: https://github.com/derekparker/delve
7070
[dep]: https://github.com/golang/dep
7171
[Docker Hub]: https://hub.docker.com
7272
[Docker]: http://www.docker.com
7373
[gb]: https://github.com/constabulary/gb/
74-
[gen-changelog.sh]: https://github.com/deis/docker-go-dev/tree/master/rootfs/usr/local/bin/gen-changelog.sh
74+
[gen-changelog.sh]: https://github.com/drycc/docker-go-dev/tree/master/rootfs/usr/local/bin/gen-changelog.sh
7575
[ginkgo]: https://github.com/onsi/ginkgo
7676
[glide]: https://github.com/Masterminds/glide
7777
[go-bindata]: https://github.com/jteeuwen/go-bindata
@@ -81,18 +81,18 @@ The latest deis/go-dev Docker image is available at:
8181
[golangci-lint]: https://github.com/golangci/golangci-lint
8282
[gox]: https://github.com/mitchellh/gox
8383
[helm]: https://github.com/kubernetes/helm
84-
[issues]: https://github.com/deis/docker-go-dev/issues
84+
[issues]: https://github.com/drycc/docker-go-dev/issues
8585
[jq]: https://stedolan.github.io/jq/
8686
[jwt]: https://github.com/dgrijalva/jwt-go
8787
[k]: https://github.com/jakepearson/k
8888
[kubectl]: https://kubernetes.io/docs/user-guide/kubectl-overview/
89-
[pull requests]: https://github.com/deis/docker-go-dev/pulls
89+
[pull requests]: https://github.com/drycc/docker-go-dev/pulls
9090
[Quay.io]: https://quay.io
9191
[Packer]: https://github.com/hashicorp/packer
9292
[ruby]: https://www.ruby-lang.org/
9393
[shellcheck]: https://github.com/koalaman/shellcheck
9494
[shyaml]: https://github.com/0k/shyaml
95-
[test-cover.sh]: https://github.com/deis/docker-go-dev/tree/master/rootfs/usr/local/bin/test-cover.sh
95+
[test-cover.sh]: https://github.com/drycc/docker-go-dev/tree/master/rootfs/usr/local/bin/test-cover.sh
9696
[Ubuntu 16.04]: https://hub.docker.com/_/ubuntu/
9797
[unzip]: https://linux.die.net/man/1/unzip
9898
[upx]: http://upx.sourceforge.net/

rootfs/Dockerfile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
FROM ubuntu:16.04
22

3-
LABEL name="deis-go-dev"
3+
LABEL name="drycc-go-dev"
44

55
ENV AZCLI_VERSION=2.0.46 \
66
GO_VERSION=1.11.4 \
77
GLIDE_VERSION=v0.13.1 \
88
GLIDE_HOME=/root \
99
HELM_VERSION=v2.12.2 \
1010
KUBECTL_VERSION=v1.10.12 \
11-
SHELLCHECK_VERSION=v0.4.6 \
11+
SHELLCHECK_VERSION=v0.4.7 \
1212
ETCDCTL_VERSION=v3.1.8 \
1313
GOLANGCI_LINT_VERSION=v1.12.5 \
1414
PATH=$PATH:/usr/local/go/bin:/go/bin:/usr/local/bin/docker \
@@ -48,11 +48,15 @@ RUN \
4848
vim \
4949
wget \
5050
zip \
51+
&& wget https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz \
52+
&& xz -d shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz \
53+
&& tar -xvf shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar \
54+
&& cp shellcheck-${SHELLCHECK_VERSION}/shellcheck /usr/local/bin/ \
55+
&& chmod +x /usr/local/bin/shellcheck \
56+
&& rm -rf shellcheck-${SHELLCHECK_VERSION} shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar \
5157
&& curl -L https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz | tar -C /usr/local -xz \
5258
&& curl -sSL https://github.com/Masterminds/glide/releases/download/$GLIDE_VERSION/glide-$GLIDE_VERSION-linux-amd64.tar.gz \
5359
| tar -vxz -C /usr/local/bin --strip=1 \
54-
&& curl -L https://deisbuildartifacts.blob.core.windows.net/shellcheck/shellcheck-${SHELLCHECK_VERSION}-linux-amd64 -o /usr/local/bin/shellcheck \
55-
&& chmod +x /usr/local/bin/shellcheck \
5660
&& curl -L https://storage.googleapis.com/k8s-claimer/git-e4dcc16/k8s-claimer-git-e4dcc16-linux-amd64 -o /usr/local/bin/k8s-claimer \
5761
&& chmod +x /usr/local/bin/k8s-claimer \
5862
&& curl -sSL -o /tmp/protoc.zip https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip \

rootfs/usr/local/bin/lint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Mandatory tests
44
echo -e "\033[0;31mManadatory Linters: These must pass\033[0m"
5-
gometalinter --vendor --tests --deadline=20s --disable-all \
5+
gometalinter --vendor --tests --deadline=600s --disable-all \
66
--enable=gofmt \
77
--enable=misspell \
88
--enable=deadcode \
@@ -15,7 +15,7 @@ mandatory=$?
1515

1616
# Optional tests
1717
echo -e "\033[0;32mOptional Linters: These should pass\033[0m"
18-
gometalinter --vendor --tests --deadline=20s --disable-all \
18+
gometalinter --vendor --tests --deadline=600s --disable-all \
1919
--enable=golint \
2020
./...
2121

0 commit comments

Comments
 (0)