Skip to content

Commit 9a02ddf

Browse files
Update to Go 1.10
1 parent 7c36a9c commit 9a02ddf

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ sudo: required
22
language: go
33

44
go:
5-
- 1.9
5+
- 1.10
66

77
services:
88
- docker

Dockerfile-server

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ARG BASE_IMAGE=ubuntu:16.04
1717
###############################################################################
1818
# Build stage to build Go code
1919
###############################################################################
20-
FROM golang:1.9 as builder
20+
FROM golang:1.10 as builder
2121
WORKDIR /go/src/github.com/ibm-messaging/mq-container/
2222
COPY cmd/ ./cmd
2323
COPY internal/ ./internal
@@ -34,7 +34,7 @@ RUN go test -v ./internal/...
3434
###############################################################################
3535
# Main build stage, to build MQ image
3636
###############################################################################
37-
FROM $BASE_IMAGE
37+
FROM $BASE_IMAGE
3838

3939
# The URL to download the MQ installer from in tar.gz format
4040
# This assumes an archive containing the MQ Debian (.deb) install packages

Dockerfile-server.cover

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# © Copyright IBM Corporation 2017
1+
# © Copyright IBM Corporation 2017, 2018
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
ARG BASE_IMAGE
1616

1717
# Build stage to build Go code
18-
FROM golang:1.9 as builder
18+
FROM golang:1.10 as builder
1919
WORKDIR /go/src/github.com/ibm-messaging/mq-container/
2020
COPY cmd/ ./cmd
2121
COPY internal/ ./internal

incubating/mqadvanced-server-dev/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
###############################################################################
1616
# Build stage to build Go code
1717
###############################################################################
18-
FROM golang:1.9 as builder
18+
FROM golang:1.10 as builder
1919
WORKDIR /go/src/github.com/ibm-messaging/mq-container/
2020
COPY cmd/ ./cmd
2121
COPY internal/ ./internal
@@ -59,4 +59,4 @@ RUN chmod +x /usr/local/bin/runmq*
5959

6060
EXPOSE 9443
6161

62-
ENTRYPOINT ["runmqdevserver"]
62+
ENTRYPOINT ["runmqdevserver"]

0 commit comments

Comments
 (0)