Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions traffic_ops/app/bin/tests/Dockerfile-golangtest
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM golang:1.8
FROM golang:1.9.4
MAINTAINER Dan Kirkwood <dangogh@apache.org>
ARG DIR=github.com/apache/trafficcontrol

Expand All @@ -20,6 +20,6 @@ ADD lib /go/src/$DIR/lib

WORKDIR /go/src/$DIR/traffic_ops/traffic_ops_golang

CMD bash -c 'go get -v && go test -cover -v $(go list ./... | grep -v vendor/) ../../lib/go-*'
CMD bash -c 'go get -v && go test -cover -v ./... ../../lib/go-tc/...'
#
# vi:syntax=Dockerfile